summaryrefslogtreecommitdiff
path: root/gtk/gtkentry.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:09:49 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:09:49 +0000
commitcd19149ad5033e403171229afa0fb569802e62a2 (patch)
tree7616c2b425317495b46a85972aaf4197ca088585 /gtk/gtkentry.h
parent10896d4874aebb5dd852e08e2964ed2f502bb525 (diff)
downloadgtk+-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/gtkentry.h')
-rw-r--r--gtk/gtkentry.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h
index 651658c4f7..2019b1eee6 100644
--- a/gtk/gtkentry.h
+++ b/gtk/gtkentry.h
@@ -58,10 +58,10 @@ struct _GtkEntry
gchar *GSEAL (text);
- guint GSEAL (editable : 1);
- guint GSEAL (visible : 1);
- guint GSEAL (overwrite_mode : 1);
- guint GSEAL (in_drag : 1); /* FIXME: Should be private?
+ guint GSEAL (editable) : 1;
+ guint GSEAL (visible) : 1;
+ guint GSEAL (overwrite_mode) : 1;
+ guint GSEAL (in_drag) : 1; /* FIXME: Should be private?
Dragging within the selection */
guint16 GSEAL (text_length); /* length in use, in chars */
@@ -77,19 +77,19 @@ struct _GtkEntry
PangoLayout *GSEAL (cached_layout);
- guint GSEAL (cache_includes_preedit : 1);
- guint GSEAL (need_im_reset : 1);
- guint GSEAL (has_frame : 1);
- guint GSEAL (activates_default : 1);
- guint GSEAL (cursor_visible : 1);
- guint GSEAL (in_click : 1); /* Flag so we don't select all when clicking in entry to focus in */
- guint GSEAL (is_cell_renderer : 1);
- guint GSEAL (editing_canceled : 1); /* Only used by GtkCellRendererText */
- guint GSEAL (mouse_cursor_obscured : 1);
- guint GSEAL (select_words : 1);
- guint GSEAL (select_lines : 1);
- guint GSEAL (resolved_dir : 4); /* PangoDirection */
- guint GSEAL (truncate_multiline : 1);
+ guint GSEAL (cache_includes_preedit) : 1;
+ guint GSEAL (need_im_reset) : 1;
+ guint GSEAL (has_frame) : 1;
+ guint GSEAL (activates_default) : 1;
+ guint GSEAL (cursor_visible) : 1;
+ guint GSEAL (in_click) : 1; /* Flag so we don't select all when clicking in entry to focus in */
+ guint GSEAL (is_cell_renderer) : 1;
+ guint GSEAL (editing_canceled) : 1; /* Only used by GtkCellRendererText */
+ guint GSEAL (mouse_cursor_obscured) : 1;
+ guint GSEAL (select_words) : 1;
+ guint GSEAL (select_lines) : 1;
+ guint GSEAL (resolved_dir) : 4; /* PangoDirection */
+ guint GSEAL (truncate_multiline) : 1;
guint GSEAL (button);
guint GSEAL (blink_timeout);