summaryrefslogtreecommitdiff
path: root/gtk/gtkentry.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-08 07:54:43 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-08 07:54:43 +0000
commita7a85ac86778bf0adeb1b71c24dfb0398b23fd0d (patch)
treecf76dedbb978787f43e6c16454867323a6083535 /gtk/gtkentry.h
parent8f526a5dc9eb33e10c228551fccdc545d1948854 (diff)
downloadgtk+-a7a85ac86778bf0adeb1b71c24dfb0398b23fd0d.tar.gz
Shrink the private structs of these a bit.
2006-01-08 Matthias Clasen <mclasen@redhat.com> * gtk/gtkentry.[hc]: * gtk/gtklabel.[hc]: Shrink the private structs of these a bit.
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r--gtk/gtkentry.h31
1 files changed, 13 insertions, 18 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h
index 6ba485aa8b..cd9c6311a6 100644
--- a/gtk/gtkentry.h
+++ b/gtk/gtkentry.h
@@ -71,26 +71,21 @@ struct _GtkEntry
gint selection_bound;
PangoLayout *cached_layout;
- guint cache_includes_preedit : 1;
-
- guint need_im_reset : 1;
-
- guint has_frame : 1;
-
- guint activates_default : 1;
- guint cursor_visible : 1;
-
- guint in_click : 1; /* Flag so we don't select all when clicking in entry to focus in */
-
- guint is_cell_renderer : 1;
- guint editing_canceled : 1; /* Only used by GtkCellRendererText */
+ guint cache_includes_preedit : 1;
+ guint need_im_reset : 1;
+ guint has_frame : 1;
+ guint activates_default : 1;
+ guint cursor_visible : 1;
+ guint in_click : 1; /* Flag so we don't select all when clicking in entry to focus in */
+ guint is_cell_renderer : 1;
+ guint editing_canceled : 1; /* Only used by GtkCellRendererText */
+ guint mouse_cursor_obscured : 1;
+ guint select_words : 1;
+ guint select_lines : 1;
+ guint resolved_dir : 4; /* PangoDirection */
+ guint truncate_multiline : 1;
- guint mouse_cursor_obscured : 1;
-
- guint select_words : 1;
- guint select_lines : 1;
- guint resolved_dir : 4; /* PangoDirection */
guint button;
guint blink_timeout;
guint recompute_idle;