diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-08-14 02:00:14 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-08-14 02:25:33 +0200 |
commit | 83c20d4b3201820524b90efd54616587ea76bb0d (patch) | |
tree | b40dae8f996a46a023615c1b2c1e9fd38c5d0b81 /gtk/gtktoolbar.h | |
parent | ca7d3f90819246986e33e03ca354f1843eac5b5a (diff) | |
download | gtk+-83c20d4b3201820524b90efd54616587ea76bb0d.tar.gz |
GtkToolbar: move public members to private structure
Diffstat (limited to 'gtk/gtktoolbar.h')
-rw-r--r-- | gtk/gtktoolbar.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h index 795a4d2ae6..4aa7c23984 100644 --- a/gtk/gtktoolbar.h +++ b/gtk/gtktoolbar.h @@ -57,29 +57,14 @@ typedef enum } GtkToolbarSpaceStyle; typedef struct _GtkToolbar GtkToolbar; +typedef struct _GtkToolbarPriv GtkToolbarPriv; typedef struct _GtkToolbarClass GtkToolbarClass; -typedef struct _GtkToolbarPrivate GtkToolbarPrivate; struct _GtkToolbar { GtkContainer container; - /*< public >*/ - gint GSEAL (num_children); - GList *GSEAL (children); - GtkOrientation GSEAL (orientation); - GtkToolbarStyle GSEAL (style); - GtkIconSize GSEAL (icon_size); - - /*< private >*/ - 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 GSEAL (style_set) : 1; - guint GSEAL (icon_size_set) : 1; + GtkToolbarPriv *priv; }; struct _GtkToolbarClass |