diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2002-02-27 13:30:37 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2002-02-27 13:30:37 +0000 |
commit | b4c43fe931f1ab7f36eaf160552b1c5a2a01673e (patch) | |
tree | 52a6e052a41a906a0b2a06cc9e40488af4822055 | |
parent | 4f7f9485d21180c069fc3db6877403ed1e8f429e (diff) | |
download | atk-b4c43fe931f1ab7f36eaf160552b1c5a2a01673e.tar.gz |
Add padding to class structures to allow for future expansion.
* atk/atkdocument.h:
Add padding to class structures to allow for future expansion.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | atk/atkdocument.h | 9 |
2 files changed, 15 insertions, 1 deletions
@@ -1,4 +1,9 @@ -2002-02-13 Padraig O'Briain <padraig.obriain@sun.com> +2002-02-27 Padraig O'Briain <padraig.obriain@sun.com> + + * atk/atkdocument.h: + Add padding to class structures to allow for future expansion. + +2002-02-27 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobjectfactory.h atk/atkgobjectaccessible.h: Add padding to class structures to allow for future expansion. diff --git a/atk/atkdocument.h b/atk/atkdocument.h index 6813237..00be906 100755 --- a/atk/atkdocument.h +++ b/atk/atkdocument.h @@ -49,6 +49,15 @@ struct _AtkDocumentIface GTypeInterface parent; G_CONST_RETURN gchar* ( *get_document_type) (AtkDocument *document); gpointer ( *get_document) (AtkDocument *document); + + AtkFunction pad1; + AtkFunction pad2; + AtkFunction pad3; + AtkFunction pad4; + AtkFunction pad5; + AtkFunction pad6; + AtkFunction pad7; + AtkFunction pad8; }; GType atk_document_get_type (void); |