~attente/glib/gbytesicon

« back to all changes in this revision

Viewing changes to docs/reference/gobject/html/howto-gobject-methods.html

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2012-11-28 14:38:35 UTC
  • mfrom: (172.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20121128143835-at37o4ozls05rkgf
Tags: 2.34.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    </p>
46
46
<div class="sect2">
47
47
<div class="titlepage"><div><div><h3 class="title">
48
 
<a name="idp20500576"></a>Non-virtual public methods</h3></div></div></div>
 
48
<a name="idp21998160"></a>Non-virtual public methods</h3></div></div></div>
49
49
<p>
50
50
        These are the simplest: you want to provide a simple method which
51
51
        can act on your object. All you need to do is to provide a function
71
71
</div>
72
72
<div class="sect2">
73
73
<div class="titlepage"><div><div><h3 class="title">
74
 
<a name="idp20503568"></a>Virtual public methods</h3></div></div></div>
 
74
<a name="idp22001152"></a>Virtual public methods</h3></div></div></div>
75
75
<p>
76
76
        This is the preferred way to create polymorphic GObjects. All you
77
77
        need to do is to define the common method and its class function in
169
169
</div>
170
170
<div class="sect2">
171
171
<div class="titlepage"><div><div><h3 class="title">
172
 
<a name="idp20513664"></a>Virtual private Methods</h3></div></div></div>
 
172
<a name="idp22011248"></a>Virtual private Methods</h3></div></div></div>
173
173
<p>
174
174
        These are very similar to Virtual Public methods. They just don't
175
175
        have a public function to call the function directly. The header