Improve struct packing in various places

This commit is contained in:
Matthias Clasen
2013-09-21 23:37:48 -04:00
parent d137f74fe9
commit e5317f0f9a
19 changed files with 47 additions and 45 deletions

View File

@ -34,7 +34,6 @@ struct _GtkEntryCompletionPrivate
GtkTreeViewColumn *column;
GtkTreeModelFilter *filter_model;
GtkListStore *actions;
gboolean first_sel_changed;
GtkCellArea *cell_area;
GtkEntryCompletionMatchFunc match_func;
@ -43,7 +42,6 @@ struct _GtkEntryCompletionPrivate
gint minimum_key_length;
gint text_column;
gint current_selected;
gchar *case_normalized_key;
@ -57,6 +55,9 @@ struct _GtkEntryCompletionPrivate
gulong changed_id;
gulong insert_text_id;
gint current_selected;
guint first_sel_changed : 1;
guint ignore_enter : 1;
guint has_completion : 1;
guint inline_completion : 1;