summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-02-23 20:08:13 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-02-23 20:08:13 +0000
commit600f8809354b7311e904127062ed7918ef7995eb (patch)
tree81e3ebb10197bee265d69e82d38497612933a4b1
parent63e9982ace41e356550196ae3a53c62bd6013268 (diff)
downloadglib-600f8809354b7311e904127062ed7918ef7995eb.tar.gz
Add some padding to the class.
Sat Feb 23 13:28:56 2002 Owen Taylor <otaylor@redhat.com> * gtypeplugin.h (struct _GTypePluginClass): Add some padding to the class. * gclosure.h (struct _GClosure): Fix typo in comment.
-rw-r--r--gobject/ChangeLog7
-rw-r--r--gobject/gclosure.h2
-rw-r--r--gobject/gtypemodule.h6
3 files changed, 14 insertions, 1 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog
index dbad57d19..8486ab3e8 100644
--- a/gobject/ChangeLog
+++ b/gobject/ChangeLog
@@ -1,3 +1,10 @@
+Sat Feb 23 13:28:56 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtypeplugin.h (struct _GTypePluginClass): Add some
+ padding to the class.
+
+ * gclosure.h (struct _GClosure): Fix typo in comment.
+
2002-02-20 Tor Lillqvist <tml@iki.fi>
* gobject.def: Add g_value_set_object_take_ownership and
diff --git a/gobject/gclosure.h b/gobject/gclosure.h
index 6dd67c6c4..ecb5e3f2a 100644
--- a/gobject/gclosure.h
+++ b/gobject/gclosure.h
@@ -66,7 +66,7 @@ struct _GClosure
/*< private >*/ guint in_inotify : 1;
/*< private >*/ guint floating : 1;
/*< protected >*/ guint derivative_flag : 1;
- /*< puplic >*/ guint in_marshal : 1;
+ /*< public >*/ guint in_marshal : 1;
/*< public >*/ guint is_invalid : 1;
/*< private >*/ void (*marshal) (GClosure *closure,
diff --git a/gobject/gtypemodule.h b/gobject/gtypemodule.h
index 548283d41..11aed5d3b 100644
--- a/gobject/gtypemodule.h
+++ b/gobject/gtypemodule.h
@@ -53,6 +53,12 @@ struct _GTypeModuleClass
gboolean (* load) (GTypeModule *module);
void (* unload) (GTypeModule *module);
+
+ /* Padding for future expansion */
+ void (*reserved1) (void);
+ void (*reserved2) (void);
+ void (*reserved3) (void);
+ void (*reserved4) (void);
};
GType g_type_module_get_type (void);