diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:49:16 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:49:16 -0400 |
commit | 93203ca2f6508064e3d866f73c669509f17de688 (patch) | |
tree | 58f58cc1bb874c302e0ba0c5e4d401a6cc8a79e0 /gtk/gtktoolitem.c | |
parent | 900ea46adde2cf2435d3aa4ed368ae6ab4089cb7 (diff) | |
download | gtk+-93203ca2f6508064e3d866f73c669509f17de688.tar.gz |
GtkToolItemPrivate: Improve struct packing
Diffstat (limited to 'gtk/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index b296e3b9a9..408494d395 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -99,22 +99,21 @@ struct _GtkToolItemPrivate gchar *tip_text; gchar *tip_private; - guint visible_horizontal : 1; - guint visible_vertical : 1; - guint homogeneous : 1; - guint expand : 1; - guint use_drag_window : 1; - guint is_important : 1; + guint visible_horizontal : 1; + guint visible_vertical : 1; + guint homogeneous : 1; + guint expand : 1; + guint use_drag_window : 1; + guint is_important : 1; + guint use_action_appearance : 1; GdkWindow *drag_window; - gchar *menu_item_id; GtkWidget *menu_item; GtkAction *action; - gboolean use_action_appearance; }; - + static void gtk_tool_item_finalize (GObject *object); static void gtk_tool_item_dispose (GObject *object); static void gtk_tool_item_parent_set (GtkWidget *toolitem, |