diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-08-19 17:17:41 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-10-02 21:02:48 +0200 |
commit | 301d52d858b8e7d4b804b893dc2f740aaa0d5aa5 (patch) | |
tree | ca4284706857d7518059d6d5d495717124fb11eb /gobject/gobject.h | |
parent | af017accc55aff3d6f28df0a41724e93fca71ff4 (diff) |
Add flags member for GObjectClass
https://bugzilla.gnome.org/show_bug.cgi?id=557100
Diffstat (limited to 'gobject/gobject.h')
-rw-r--r-- | gobject/gobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gobject/gobject.h b/gobject/gobject.h index a75f03cb2..751e5f2f8 100644 --- a/gobject/gobject.h +++ b/gobject/gobject.h @@ -344,8 +344,10 @@ struct _GObjectClass void (*constructed) (GObject *object); /*< private >*/ + gsize flags; + /* padding */ - gpointer pdummy[7]; + gpointer pdummy[6]; }; /** * GObjectConstructParam: |