range: Trivial field ordering
authorMatthias Clasen <mclasen@redhat.com>
Sun, 12 Jul 2015 05:53:36 +0000 (01:53 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 12 Jul 2015 05:53:36 +0000 (01:53 -0400)
gtk/gtkrange.c

index 9a41f20e04f3737d12c936933f932b173b2edf9e..7d91bda2f7a51c77d8670474060b8a3999196474 100644 (file)
@@ -138,12 +138,6 @@ struct _GtkRangePrivate
 
   /* Whether we're doing fine adjustment */
   guint zoom                   : 1;
-  GtkGesture *long_press_gesture;
-  GtkScrollType autoscroll_mode;
-  guint autoscroll_id;
-
-  GtkGesture *multipress_gesture;
-  GtkGesture *drag_gesture;
 
   /* Fill level */
   guint show_fill_level        : 1;
@@ -151,6 +145,13 @@ struct _GtkRangePrivate
 
   /* Whether dragging is ongoing */
   guint in_drag                : 1;
+
+  GtkGesture *long_press_gesture;
+  GtkGesture *multipress_gesture;
+  GtkGesture *drag_gesture;
+
+  GtkScrollType autoscroll_mode;
+  guint autoscroll_id;
 };