diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-09-21 23:37:48 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-09-21 23:50:55 -0400 |
commit | e5317f0f9ad3c8dfb9df0d90e3d7b16524334f49 (patch) | |
tree | 8a93058565e43a1a2cdfe206b139293bcce8bdb9 /gtk/gtkentry.c | |
parent | d137f74fe9cc3dfcd0087e9342b5f51f87f3aeb5 (diff) | |
download | gtk+-e5317f0f9ad3c8dfb9df0d90e3d7b16524334f49.tar.gz |
Improve struct packing in various places
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r-- | gtk/gtkentry.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 01fa816f55..d124b46c33 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -234,10 +234,9 @@ struct _EntryIconInfo guint in_drag : 1; guint pressed : 1; - GtkIconHelper *icon_helper; - - GtkTargetList *target_list; GdkDragAction actions; + GtkTargetList *target_list; + GtkIconHelper *icon_helper; }; struct _GtkEntryPasswordHint |