Add some padding to the class.
authorOwen Taylor <otaylor@redhat.com>
Sat, 23 Feb 2002 20:08:13 +0000 (20:08 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sat, 23 Feb 2002 20:08:13 +0000 (20:08 +0000)
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.

gobject/ChangeLog
gobject/gclosure.h
gobject/gtypemodule.h

index dbad57d..8486ab3 100644 (file)
@@ -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
index 6dd67c6..ecb5e3f 100644 (file)
@@ -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,
index 548283d..11aed5d 100644 (file)
@@ -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);