diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:02:30 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:02:30 +0000 |
commit | ba917629a4f7acfd7bb7fd1cb27ebbadabffdcd2 (patch) | |
tree | ed1340c970ec92db5ff4daa5f318f795d259f93e /gtk/gtktoolbar.h | |
parent | 19431e8b51f566117596f8ebb21ab25f13b5f4a4 (diff) | |
download | gtk+-ba917629a4f7acfd7bb7fd1cb27ebbadabffdcd2.tar.gz |
Seal GtkToolbar
svn path=/trunk/; revision=20540
Diffstat (limited to 'gtk/gtktoolbar.h')
-rw-r--r-- | gtk/gtktoolbar.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h index ce412672d7..818969756f 100644 --- a/gtk/gtktoolbar.h +++ b/gtk/gtktoolbar.h @@ -96,27 +96,27 @@ struct _GtkToolbar GtkContainer container; /*< public >*/ - gint num_children; - GList *children; - GtkOrientation orientation; - GtkToolbarStyle style; - GtkIconSize icon_size; + gint GSEAL (num_children); + GList *GSEAL (children); + GtkOrientation GSEAL (orientation); + GtkToolbarStyle GSEAL (style); + GtkIconSize GSEAL (icon_size); #ifndef GTK_DISABLE_DEPRECATED - GtkTooltips *tooltips; + GtkTooltips *GSEAL (tooltips); #else - gpointer _tooltips; + gpointer GSEAL (_tooltips); #endif /*< private >*/ - gint button_maxw; /* maximum width of homogeneous children */ - gint button_maxh; /* maximum height of homogeneous children */ + gint GSEAL (button_maxw); /* maximum width of homogeneous children */ + gint GSEAL (button_maxh); /* maximum height of homogeneous children */ guint _gtk_reserved1; guint _gtk_reserved2; - guint style_set : 1; - guint icon_size_set : 1; + guint GSEAL (style_set) : 1; + guint GSEAL (icon_size_set) : 1; }; struct _GtkToolbarClass |