summaryrefslogtreecommitdiff
path: root/gtk/gtktoolbar.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2005-11-24 16:51:22 +0000
committerMichael Natterer <mitch@src.gnome.org>2005-11-24 16:51:22 +0000
commitff7a092232861b5eb6a60190dc38865acd7fd21c (patch)
tree60f0122586ab53ffe148d73f0512c149fc929e7d /gtk/gtktoolbar.h
parentfbb2e3f4f51a4c0ccc8f2bf511f4766293fc4af0 (diff)
downloadgtk+-ff7a092232861b5eb6a60190dc38865acd7fd21c.tar.gz
changed two private guint that used to hold signal handler IDs to two
2005-11-24 Michael Natterer <mitch@imendio.com> * gtk/gtktoolbar.h (struct _GtkToolbar): changed two private guint that used to hold signal handler IDs to two guint of padding. * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): added them as gulong here. (gtk_toolbar_screen_changed): changed accordingly.
Diffstat (limited to 'gtk/gtktoolbar.h')
-rw-r--r--gtk/gtktoolbar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h
index 1b36b460c5..e80134d200 100644
--- a/gtk/gtktoolbar.h
+++ b/gtk/gtktoolbar.h
@@ -104,10 +104,10 @@ struct _GtkToolbar
/*< private >*/
gint button_maxw; /* maximum width of homogeneous children */
gint button_maxh; /* maximum height of homogeneous children */
-
- guint style_set_connection;
- guint icon_size_connection;
-
+
+ guint _gtk_reserved1;
+ guint _gtk_reserved2;
+
guint style_set : 1;
guint icon_size_set : 1;
};