diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 22:32:16 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | 3078b180fe79efd0e58239dabb7098c40aced1a8 (patch) | |
tree | a4ce228bafd8df1eff46d2410554a2b2a3c0f12e /gtk/gtklistbox.c | |
parent | 556997f9df3b771733fc49a02d5424aee276e29f (diff) | |
download | gtk+-3078b180fe79efd0e58239dabb7098c40aced1a8.tar.gz |
Replace "gdouble" with "double"
Diffstat (limited to 'gtk/gtklistbox.c')
-rw-r--r-- | gtk/gtklistbox.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c index 7b9affd94e..3d3a1a720a 100644 --- a/gtk/gtklistbox.c +++ b/gtk/gtklistbox.c @@ -281,17 +281,17 @@ static void gtk_list_box_set_accept_unpaired_release (GtkList static void gtk_list_box_click_gesture_pressed (GtkGestureClick *gesture, guint n_press, - gdouble x, - gdouble y, + double x, + double y, GtkListBox *box); static void gtk_list_box_click_gesture_released (GtkGestureClick *gesture, guint n_press, - gdouble x, - gdouble y, + double x, + double y, GtkListBox *box); static void gtk_list_box_click_unpaired_release (GtkGestureClick *gesture, - gdouble x, - gdouble y, + double x, + double y, guint button, GdkEventSequence *sequence, GtkListBox *box); @@ -1782,8 +1782,8 @@ gtk_list_box_select_and_activate_full (GtkListBox *box, static void gtk_list_box_click_gesture_pressed (GtkGestureClick *gesture, guint n_press, - gdouble x, - gdouble y, + double x, + double y, GtkListBox *box) { GtkListBoxRow *row; @@ -1802,8 +1802,8 @@ gtk_list_box_click_gesture_pressed (GtkGestureClick *gesture, static void gtk_list_box_click_unpaired_release (GtkGestureClick *gesture, - gdouble x, - gdouble y, + double x, + double y, guint button, GdkEventSequence *sequence, GtkListBox *box) @@ -1822,8 +1822,8 @@ gtk_list_box_click_unpaired_release (GtkGestureClick *gesture, static void gtk_list_box_click_gesture_released (GtkGestureClick *gesture, guint n_press, - gdouble x, - gdouble y, + double x, + double y, GtkListBox *box) { /* Take a ref to protect against reentrancy |