diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2003-10-20 20:07:45 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-10-20 20:07:45 +0000 |
commit | 4a29291187c5d1b267ab87378a4f89abf4f013e0 (patch) | |
tree | a5b5acca5ec3a2707a060d45a97b08df78e9dc2d /gobject | |
parent | 04d27d2299d8b40b0fed60b3bd333fc1d95a4997 (diff) |
Documentation additions.
Diffstat (limited to 'gobject')
-rw-r--r-- | gobject/ChangeLog | 5 | ||||
-rw-r--r-- | gobject/gobject.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog index c975e80c5..1f0ed815d 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 20 22:06:12 2003 Matthias Clasen <maclas@gmx.de> + + * gobject.h (struct _GObjectClass): Add /*< public >*/ + and /*< private >*/ markers for documentation purposes. + Sat Oct 18 01:24:14 2003 Matthias Clasen <maclas@gmx.de> * gtypeplugin.h (struct _GTypePluginClass): Add /*< public >*/ diff --git a/gobject/gobject.h b/gobject/gobject.h index 6690793c9..733ce0afa 100644 --- a/gobject/gobject.h +++ b/gobject/gobject.h @@ -75,7 +75,8 @@ struct _GObjectClass /*< private >*/ GSList *construct_properties; - /* public overridable methods */ + /*< public >*/ + /* overridable methods */ GObject* (*constructor) (GType type, guint n_construct_properties, GObjectConstructParam *construct_properties); @@ -98,6 +99,7 @@ struct _GObjectClass /* signals */ void (*notify) (GObject *object, GParamSpec *pspec); + /*< private >*/ /* padding */ gpointer pdummy[8]; }; |