diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:09:49 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:09:49 +0000 |
commit | cd19149ad5033e403171229afa0fb569802e62a2 (patch) | |
tree | 7616c2b425317495b46a85972aaf4197ca088585 /gtk/gtknotebook.h | |
parent | 10896d4874aebb5dd852e08e2964ed2f502bb525 (diff) | |
download | gtk+-cd19149ad5033e403171229afa0fb569802e62a2.tar.gz |
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
Diffstat (limited to 'gtk/gtknotebook.h')
-rw-r--r-- | gtk/gtknotebook.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gtk/gtknotebook.h b/gtk/gtknotebook.h index c1f28efad0..3e4ea32cc6 100644 --- a/gtk/gtknotebook.h +++ b/gtk/gtknotebook.h @@ -73,23 +73,23 @@ struct _GtkNotebook guint16 GSEAL (tab_hborder); guint16 GSEAL (tab_vborder); - guint GSEAL (show_tabs : 1); - guint GSEAL (homogeneous : 1); - guint GSEAL (show_border : 1); - guint GSEAL (tab_pos : 2); - guint GSEAL (scrollable : 1); - guint GSEAL (in_child : 3); - guint GSEAL (click_child : 3); - guint GSEAL (button : 2); - guint GSEAL (need_timer : 1); - guint GSEAL (child_has_focus : 1); - guint GSEAL (have_visible_child : 1); - guint GSEAL (focus_out : 1); /* Flag used by ::move-focus-out implementation */ - - guint GSEAL (has_before_previous : 1); - guint GSEAL (has_before_next : 1); - guint GSEAL (has_after_previous : 1); - guint GSEAL (has_after_next : 1); + guint GSEAL (show_tabs) : 1; + guint GSEAL (homogeneous) : 1; + guint GSEAL (show_border) : 1; + guint GSEAL (tab_pos) : 2; + guint GSEAL (scrollable) : 1; + guint GSEAL (in_child) : 3; + guint GSEAL (click_child) : 3; + guint GSEAL (button) : 2; + guint GSEAL (need_timer) : 1; + guint GSEAL (child_has_focus) : 1; + guint GSEAL (have_visible_child) : 1; + guint GSEAL (focus_out) : 1; /* Flag used by ::move-focus-out implementation */ + + guint GSEAL (has_before_previous) : 1; + guint GSEAL (has_before_next) : 1; + guint GSEAL (has_after_previous) : 1; + guint GSEAL (has_after_next) : 1; }; struct _GtkNotebookClass |