diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-01-08 07:54:43 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-01-08 07:54:43 +0000 |
commit | a7a85ac86778bf0adeb1b71c24dfb0398b23fd0d (patch) | |
tree | cf76dedbb978787f43e6c16454867323a6083535 /gtk/gtklabel.h | |
parent | 8f526a5dc9eb33e10c228551fccdc545d1948854 (diff) | |
download | gtk+-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/gtklabel.h')
-rw-r--r-- | gtk/gtklabel.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gtk/gtklabel.h b/gtk/gtklabel.h index 3bbaade26d..3e14e01b4a 100644 --- a/gtk/gtklabel.h +++ b/gtk/gtklabel.h @@ -53,11 +53,14 @@ struct _GtkLabel /*< private >*/ gchar *label; - guint jtype : 2; - guint wrap : 1; - guint use_underline : 1; - guint use_markup : 1; - guint ellipsize : 3; + guint jtype : 2; + guint wrap : 1; + guint use_underline : 1; + guint use_markup : 1; + guint ellipsize : 3; + guint single_line_mode : 1; + guint have_transform : 1; + guint in_click : 1; guint mnemonic_keyval; |