diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-11-26 17:10:00 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-11-26 17:10:00 +0000 |
commit | d5eb6847e58cd6276aa4cb68d31225c02f0c21ac (patch) | |
tree | e57664f082d79a64dd116c6b7328e9a04a5f18e3 /gtk/gtktoolbar.c | |
parent | 259244deda436f67784b1e33a7a108f13a20e3cf (diff) | |
download | gtk+-d5eb6847e58cd6276aa4cb68d31225c02f0c21ac.tar.gz |
Don't use guint8 for bitfields, since some compilers choke on that.
2007-11-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.c:
* gtk/gtktoolbar.c: Don't use guint8 for bitfields, since
some compilers choke on that. (#467722)
svn path=/trunk/; revision=19051
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index 6ed46b9aca..8b5141129b 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -3877,7 +3877,7 @@ struct _ToolbarContent GtkAllocation goal_allocation; guint is_placeholder : 1; guint disappearing : 1; - TriState has_menu : 2; + guint has_menu : 2; } tool_item; struct |