summaryrefslogtreecommitdiff
path: root/gtk/gtkplacessidebar.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 22:32:16 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commit3078b180fe79efd0e58239dabb7098c40aced1a8 (patch)
treea4ce228bafd8df1eff46d2410554a2b2a3c0f12e /gtk/gtkplacessidebar.c
parent556997f9df3b771733fc49a02d5424aee276e29f (diff)
downloadgtk+-3078b180fe79efd0e58239dabb7098c40aced1a8.tar.gz
Replace "gdouble" with "double"
Diffstat (limited to 'gtk/gtkplacessidebar.c')
-rw-r--r--gtk/gtkplacessidebar.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
index a0f3a9c070..f66bb0a265 100644
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -271,23 +271,23 @@ static void check_unmount_and_eject (GMount *mount,
gboolean *show_eject);
static void on_row_pressed (GtkGestureClick *gesture,
int n_press,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row);
static void on_row_released (GtkGestureClick *gesture,
int n_press,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row);
static void on_row_dragged (GtkGestureDrag *gesture,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row);
static void popup_menu_cb (GtkSidebarRow *row);
static void long_press_cb (GtkGesture *gesture,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkPlacesSidebar *sidebar);
static void stop_drop_feedback (GtkPlacesSidebar *sidebar);
static GMountOperation * get_mount_operation (GtkPlacesSidebar *sidebar);
@@ -3383,8 +3383,8 @@ on_row_activated (GtkListBox *list_box,
static void
on_row_pressed (GtkGestureClick *gesture,
int n_press,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row)
{
GtkPlacesSidebar *sidebar;
@@ -3410,8 +3410,8 @@ on_row_pressed (GtkGestureClick *gesture,
static void
on_row_released (GtkGestureClick *gesture,
int n_press,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row)
{
GtkPlacesSidebar *sidebar;
@@ -3452,8 +3452,8 @@ on_row_released (GtkGestureClick *gesture,
static void
on_row_dragged (GtkGestureDrag *gesture,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkSidebarRow *row)
{
GtkPlacesSidebar *sidebar;
@@ -3532,8 +3532,8 @@ popup_menu_cb (GtkSidebarRow *row)
static void
long_press_cb (GtkGesture *gesture,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
GtkPlacesSidebar *sidebar)
{
GtkWidget *row;