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/gtkpathbar.c | |
parent | 556997f9df3b771733fc49a02d5424aee276e29f (diff) | |
download | gtk+-3078b180fe79efd0e58239dabb7098c40aced1a8.tar.gz |
Replace "gdouble" with "double"
Diffstat (limited to 'gtk/gtkpathbar.c')
-rw-r--r-- | gtk/gtkpathbar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index c24b931e02..e3e0b284b4 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -153,8 +153,8 @@ static void gtk_path_bar_update_button_appearance (GtkPathBar *path_bar, gboolean current_dir); static gboolean gtk_path_bar_scroll_controller_scroll (GtkEventControllerScroll *scroll, - gdouble dx, - gdouble dy, + double dx, + double dy, GtkPathBar *path_bar); static void @@ -671,8 +671,8 @@ gtk_path_bar_size_allocate (GtkWidget *widget, static gboolean gtk_path_bar_scroll_controller_scroll (GtkEventControllerScroll *scroll, - gdouble dx, - gdouble dy, + double dx, + double dy, GtkPathBar *path_bar) { if (dy > 0) |