]> Pileus Git - ~andy/gtk/commitdiff
GtkAppChooserWidgetPrivate: Improve struct packing
authorMatthias Clasen <mclasen@redhat.com>
Tue, 12 Apr 2011 16:24:34 +0000 (12:24 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 12 Apr 2011 16:24:34 +0000 (12:24 -0400)
gtk/gtkappchooserwidget.c

index 2251971ddda3f145e0631be141e95579ed1d776f..8b3ab9d365d2ea81842454020a32b65c337d20d6 100644 (file)
@@ -61,11 +61,12 @@ struct _GtkAppChooserWidgetPrivate {
 
   gchar *content_type;
   gchar *default_text;
-  gboolean show_default;
-  gboolean show_recommended;
-  gboolean show_fallback;
-  gboolean show_other;
-  gboolean show_all;
+
+  guint show_default     : 1;
+  guint show_recommended : 1;
+  guint show_fallback    : 1;
+  guint show_other       : 1;
+  guint show_all         : 1;
 
   GtkWidget *program_list;
   GtkListStore *program_list_store;