From cd19149ad5033e403171229afa0fb569802e62a2 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Fri, 20 Jun 2008 11:09:49 +0000 Subject: Switch to "guint GSEAL (foo) : width;" when packing fields in guints. * gtk/gtkbox.h: * gtk/gtkbutton.h: * gtk/gtkcellrenderer.h: * gtk/gtkcellrenderertext.h: * gtk/gtkcheckmenuitem.h: * gtk/gtkcontainer.h: * gtk/gtkentry.h: * gtk/gtkhandlebox.h: * gtk/gtkimcontextsimple.h: * gtk/gtklabel.h: * gtk/gtkliststore.h: * gtk/gtkmenu.h: * gtk/gtkmenuitem.h: * gtk/gtkmenushell.h: * gtk/gtknotebook.h: * gtk/gtkpaned.h: * gtk/gtkplug.h: * gtk/gtkprintjob.h: * gtk/gtkprogressbar.h: * gtk/gtkrange.h: * gtk/gtkscale.h: * gtk/gtkscrolledwindow.h: * gtk/gtksizegroup.h: * gtk/gtksocket.h: * gtk/gtkspinbutton.h: * gtk/gtkstatusbar.h: * gtk/gtktable.h: * gtk/gtktearoffmenuitem.h: * gtk/gtktextbuffer.h: * gtk/gtktextview.h: * gtk/gtktogglebutton.h: * gtk/gtktoolbar.h: * gtk/gtktreestore.h: * gtk/gtktreeviewcolumn.h: * gtk/gtkwindow.h: Do not specify width inside GSEAL() when packing fields in guints. svn path=/trunk/; revision=20621 --- gtk/gtkmenu.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'gtk/gtkmenu.h') diff --git a/gtk/gtkmenu.h b/gtk/gtkmenu.h index 9271451a7e..3521e5ded3 100644 --- a/gtk/gtkmenu.h +++ b/gtk/gtkmenu.h @@ -96,19 +96,19 @@ struct _GtkMenu GdkRegion *GSEAL (navigation_region); guint GSEAL (navigation_timeout); - guint GSEAL (needs_destruction_ref_count : 1); - guint GSEAL (torn_off : 1); + guint GSEAL (needs_destruction_ref_count) : 1; + guint GSEAL (torn_off) : 1; /* The tearoff is active when it is torn off and the not-torn-off * menu is not popped up. */ - guint GSEAL (tearoff_active : 1); + guint GSEAL (tearoff_active) : 1; - guint GSEAL (scroll_fast : 1); + guint GSEAL (scroll_fast) : 1; - guint GSEAL (upper_arrow_visible : 1); - guint GSEAL (lower_arrow_visible : 1); - guint GSEAL (upper_arrow_prelight : 1); - guint GSEAL (lower_arrow_prelight : 1); + guint GSEAL (upper_arrow_visible) : 1; + guint GSEAL (lower_arrow_visible) : 1; + guint GSEAL (upper_arrow_prelight) : 1; + guint GSEAL (lower_arrow_prelight) : 1; }; struct _GtkMenuClass -- cgit v1.2.1