summaryrefslogtreecommitdiff
path: root/gdk/gdktypes.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/gdktypes.h
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'gdk/gdktypes.h')
-rw-r--r--gdk/gdktypes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk/gdktypes.h b/gdk/gdktypes.h
index 9ad7879367..0a0068e181 100644
--- a/gdk/gdktypes.h
+++ b/gdk/gdktypes.h
@@ -62,8 +62,8 @@ G_BEGIN_DECLS
*/
struct _GdkPoint
{
- gint x;
- gint y;
+ int x;
+ int y;
};
typedef struct _GdkPoint GdkPoint;
@@ -405,8 +405,8 @@ typedef struct _GdkKeymapKey GdkKeymapKey;
struct _GdkKeymapKey
{
guint keycode;
- gint group;
- gint level;
+ int group;
+ int level;
};