Add padding to class structures to allow for future expansion.
authorPadraig O'Briain <padraigo@src.gnome.org>
Wed, 27 Feb 2002 08:25:02 +0000 (08:25 +0000)
committerPadraig O'Briain <padraigo@src.gnome.org>
Wed, 27 Feb 2002 08:25:02 +0000 (08:25 +0000)
* atk/atkobjectfactory.h atk/atkgobjectaccessible.h:
Add padding to class structures to allow for future expansion.

ChangeLog
atk/atkgobjectaccessible.h
atk/atkobjectfactory.h

index 7d6e3c0..61a192d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-13  Padraig O'Briain  <padraig.obriain@sun.com>
+
+       * atk/atkobjectfactory.h atk/atkgobjectaccessible.h:
+       Add padding to class structures to allow for future expansion.
+
 Mon Feb 25 19:09:39 2002  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Bail if AM_PATH_GLIB_2_0 fails.
index eae59ea..adb46cd 100644 (file)
@@ -51,6 +51,9 @@ GType atk_gobject_accessible_get_type (void);
 struct _AtkGObjectAccessibleClass
 {
   AtkObjectClass parent_class;
+
+  AtkFunction pad1;
+  AtkFunction pad2;
 };
 
 AtkObject *atk_gobject_accessible_for_object      (GObject           *obj);
index bbd5981..fb163ad 100755 (executable)
@@ -49,6 +49,9 @@ struct _AtkObjectFactoryClass
   AtkObject* (* create_accessible) (GObject          *obj);
   void       (* invalidate)        (AtkObjectFactory *factory);
   GType      (* get_accessible_type)    (void);
+
+  AtkFunction pad1;
+  AtkFunction pad2;
 };
 
 GType atk_object_factory_get_type(void);