GtkCellRendererTextPrivate: Improve struct packing

This commit is contained in:
Matthias Clasen 2011-04-12 12:31:28 -04:00
parent ea936d4237
commit a6db55b774

View File

@ -161,18 +161,16 @@ struct _GtkCellRendererTextPrivate
{
GtkWidget *entry;
PangoAlignment align;
PangoAttrList *extra_attrs;
GdkRGBA foreground;
GdkRGBA background;
PangoAlignment align;
PangoEllipsizeMode ellipsize;
PangoFontDescription *font;
PangoLanguage *language;
PangoUnderline underline_style;
PangoWrapMode wrap_mode;
gboolean in_entry_menu;
gchar *text;
gdouble font_scale;
@ -183,6 +181,7 @@ struct _GtkCellRendererTextPrivate
gint max_width_chars;
gint wrap_width;
guint in_entry_menu : 1;
guint strikethrough : 1;
guint editable : 1;
guint scale_set : 1;