summaryrefslogtreecommitdiff
path: root/gtk/gtksnapshot.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/gtksnapshot.c
parent556997f9df3b771733fc49a02d5424aee276e29f (diff)
downloadgtk+-3078b180fe79efd0e58239dabb7098c40aced1a8.tar.gz
Replace "gdouble" with "double"
Diffstat (limited to 'gtk/gtksnapshot.c')
-rw-r--r--gtk/gtksnapshot.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtksnapshot.c b/gtk/gtksnapshot.c
index b9c99ffb83..7de6594167 100644
--- a/gtk/gtksnapshot.c
+++ b/gtk/gtksnapshot.c
@@ -1706,10 +1706,10 @@ gtk_snapshot_append_color (GtkSnapshot *snapshot,
void
gtk_snapshot_render_background (GtkSnapshot *snapshot,
GtkStyleContext *context,
- gdouble x,
- gdouble y,
- gdouble width,
- gdouble height)
+ double x,
+ double y,
+ double width,
+ double height)
{
GtkCssBoxes boxes;
@@ -1738,10 +1738,10 @@ gtk_snapshot_render_background (GtkSnapshot *snapshot,
void
gtk_snapshot_render_frame (GtkSnapshot *snapshot,
GtkStyleContext *context,
- gdouble x,
- gdouble y,
- gdouble width,
- gdouble height)
+ double x,
+ double y,
+ double width,
+ double height)
{
GtkCssBoxes boxes;
@@ -1770,10 +1770,10 @@ gtk_snapshot_render_frame (GtkSnapshot *snapshot,
void
gtk_snapshot_render_focus (GtkSnapshot *snapshot,
GtkStyleContext *context,
- gdouble x,
- gdouble y,
- gdouble width,
- gdouble height)
+ double x,
+ double y,
+ double width,
+ double height)
{
GtkCssBoxes boxes;
@@ -1801,8 +1801,8 @@ gtk_snapshot_render_focus (GtkSnapshot *snapshot,
void
gtk_snapshot_render_layout (GtkSnapshot *snapshot,
GtkStyleContext *context,
- gdouble x,
- gdouble y,
+ double x,
+ double y,
PangoLayout *layout)
{
const bool needs_translate = (x != 0 || y != 0);