Pack GtkWidgetPrivate a bit better

This makes it shrink from 240 to 232 bytes.
This commit is contained in:
Matthias Clasen 2015-09-12 18:54:38 -04:00
parent 27db410fd5
commit d8e1f1edf5

View File

@ -140,6 +140,11 @@ struct _GtkWidgetPrivate
gint allocated_baseline;
GtkAllocation clip;
#ifdef G_ENABLE_DEBUG
/* Number of gtk_widget_push_verify_invariants () */
guint verifying_invariants_count;
#endif /* G_ENABLE_DEBUG */
/* The widget's requested sizes */
SizeRequestCache requests;
@ -164,11 +169,6 @@ struct _GtkWidgetPrivate
*/
GHashTable *auto_children;
#ifdef G_ENABLE_DEBUG
/* Number of gtk_widget_push_verify_invariants () */
guint verifying_invariants_count;
#endif /* G_ENABLE_DEBUG */
GList *event_controllers;
cairo_font_options_t *font_options;