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
This commit is contained in:
@ -88,15 +88,15 @@ struct _GtkSpinButton
|
||||
|
||||
GtkSpinButtonUpdatePolicy GSEAL (update_policy);
|
||||
|
||||
guint GSEAL (in_child : 2);
|
||||
guint GSEAL (click_child : 2); /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
|
||||
guint GSEAL (button : 2);
|
||||
guint GSEAL (need_timer : 1);
|
||||
guint GSEAL (timer_calls : 3);
|
||||
guint GSEAL (digits : 10);
|
||||
guint GSEAL (numeric : 1);
|
||||
guint GSEAL (wrap : 1);
|
||||
guint GSEAL (snap_to_ticks : 1);
|
||||
guint GSEAL (in_child) : 2;
|
||||
guint GSEAL (click_child) : 2; /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
|
||||
guint GSEAL (button) : 2;
|
||||
guint GSEAL (need_timer) : 1;
|
||||
guint GSEAL (timer_calls) : 3;
|
||||
guint GSEAL (digits) : 10;
|
||||
guint GSEAL (numeric) : 1;
|
||||
guint GSEAL (wrap) : 1;
|
||||
guint GSEAL (snap_to_ticks) : 1;
|
||||
};
|
||||
|
||||
struct _GtkSpinButtonClass
|
||||
|
||||
Reference in New Issue
Block a user