summaryrefslogtreecommitdiff
path: root/gdk/gdkinternals.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 15:54:49 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch)
tree8dc515efd6e0c0b0da1d7e02049f284edd6050ff /gdk/gdkinternals.h
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'gdk/gdkinternals.h')
-rw-r--r--gdk/gdkinternals.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h
index c42728573e..a4d85365fd 100644
--- a/gdk/gdkinternals.h
+++ b/gdk/gdkinternals.h
@@ -271,20 +271,20 @@ void gdk_device_get_position (GdkDevice *device,
void gdk_surface_get_root_coords (GdkSurface *surface,
- gint x,
- gint y,
- gint *root_x,
- gint *root_y);
+ int x,
+ int y,
+ int *root_x,
+ int *root_y);
void gdk_surface_get_origin (GdkSurface *surface,
- gint *x,
- gint *y);
+ int *x,
+ int *y);
void gdk_surface_get_geometry (GdkSurface *surface,
- gint *x,
- gint *y,
- gint *width,
- gint *height);
+ int *x,
+ int *y,
+ int *width,
+ int *height);
GdkGLContext *gdk_surface_get_shared_data_gl_context (GdkSurface *surface);
@@ -323,14 +323,14 @@ typedef struct _GdkGeometry GdkGeometry;
struct _GdkGeometry
{
- gint min_width;
- gint min_height;
- gint max_width;
- gint max_height;
- gint base_width;
- gint base_height;
- gint width_inc;
- gint height_inc;
+ int min_width;
+ int min_height;
+ int max_width;
+ int max_height;
+ int base_width;
+ int base_height;
+ int width_inc;
+ int height_inc;
gdouble min_aspect;
gdouble max_aspect;
GdkGravity win_gravity;
@@ -339,10 +339,10 @@ struct _GdkGeometry
GDK_AVAILABLE_IN_ALL
void gdk_surface_constrain_size (GdkGeometry *geometry,
GdkSurfaceHints flags,
- gint width,
- gint height,
- gint *new_width,
- gint *new_height);
+ int width,
+ int height,
+ int *new_width,
+ int *new_height);
/*
* GdkSeatGrabPrepareFunc:
@@ -376,16 +376,16 @@ GdkKeymap * gdk_display_get_keymap (GdkDisplay *display);
void gdk_surface_begin_resize_drag (GdkSurface *surface,
GdkSurfaceEdge edge,
GdkDevice *device,
- gint button,
- gint x,
- gint y,
+ int button,
+ int x,
+ int y,
guint32 timestamp);
void gdk_surface_begin_move_drag (GdkSurface *surface,
GdkDevice *device,
- gint button,
- gint x,
- gint y,
+ int button,
+ int x,
+ int y,
guint32 timestamp);
G_END_DECLS