summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-07-12 01:53:36 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-12 01:53:36 -0400
commit1ca6d8b1b586ea6d11c481b442862dab30ae0a8a (patch)
treec3298ac915699253b2441917c1cfba196474ed20
parent1c780beb8b194d18ff86ca53f30b0c6c522bfc0d (diff)
downloadgtk+-1ca6d8b1b586ea6d11c481b442862dab30ae0a8a.tar.gz
range: Trivial field ordering
-rw-r--r--gtk/gtkrange.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/gtk/gtkrange.c b/gtk/gtkrange.c
index 9a41f20e04..7d91bda2f7 100644
--- a/gtk/gtkrange.c
+++ b/gtk/gtkrange.c
@@ -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;
};