summaryrefslogtreecommitdiff
path: root/gdk/gdkdevicepad.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk/gdkdevicepad.c')
-rw-r--r--gdk/gdkdevicepad.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk/gdkdevicepad.c b/gdk/gdkdevicepad.c
index aa0642e292..05b620a52b 100644
--- a/gdk/gdkdevicepad.c
+++ b/gdk/gdkdevicepad.c
@@ -73,7 +73,7 @@ gdk_device_pad_default_init (GdkDevicePadInterface *pad)
*
* Returns: The number of button/ring/strip groups in the pad.
**/
-gint
+int
gdk_device_pad_get_n_groups (GdkDevicePad *pad)
{
GdkDevicePadInterface *iface = GDK_DEVICE_PAD_GET_IFACE (pad);
@@ -92,9 +92,9 @@ gdk_device_pad_get_n_groups (GdkDevicePad *pad)
*
* Returns: The number of modes available in @group.
**/
-gint
+int
gdk_device_pad_get_group_n_modes (GdkDevicePad *pad,
- gint group_idx)
+ int group_idx)
{
GdkDevicePadInterface *iface = GDK_DEVICE_PAD_GET_IFACE (pad);
@@ -113,7 +113,7 @@ gdk_device_pad_get_group_n_modes (GdkDevicePad *pad,
*
* Returns: The amount of elements of type @feature that this pad has.
**/
-gint
+int
gdk_device_pad_get_n_features (GdkDevicePad *pad,
GdkDevicePadFeature feature)
{
@@ -135,10 +135,10 @@ gdk_device_pad_get_n_features (GdkDevicePad *pad,
*
* Returns: The group number of the queried pad feature.
**/
-gint
+int
gdk_device_pad_get_feature_group (GdkDevicePad *pad,
GdkDevicePadFeature feature,
- gint idx)
+ int idx)
{
GdkDevicePadInterface *iface = GDK_DEVICE_PAD_GET_IFACE (pad);