diff options
Diffstat (limited to 'gdk/gdkdevice.c')
-rw-r--r-- | gdk/gdkdevice.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkdevice.c b/gdk/gdkdevice.c index 5cddd20c78..ae6cd79e6b 100644 --- a/gdk/gdkdevice.c +++ b/gdk/gdkdevice.c @@ -634,7 +634,7 @@ gdk_device_get_surface_at_position (GdkDevice *device, * * Returns: a name **/ -const gchar * +const char * gdk_device_get_name (GdkDevice *device) { g_return_val_if_fail (GDK_IS_DEVICE (device), NULL); @@ -1297,10 +1297,10 @@ _gdk_device_surface_at_position (GdkDevice *device, * static GSettings * * get_device_settings (GdkDevice *device) * { - * const gchar *vendor, *product; + * const char *vendor, *product; * GSettings *settings; * GdkDevice *device; - * gchar *path; + * char *path; * * vendor = gdk_device_get_vendor_id (device); * product = gdk_device_get_product_id (device); @@ -1315,7 +1315,7 @@ _gdk_device_surface_at_position (GdkDevice *device, * * Returns: (nullable): the vendor ID, or %NULL */ -const gchar * +const char * gdk_device_get_vendor_id (GdkDevice *device) { g_return_val_if_fail (GDK_IS_DEVICE (device), NULL); @@ -1334,7 +1334,7 @@ gdk_device_get_vendor_id (GdkDevice *device) * * Returns: (nullable): the product ID, or %NULL */ -const gchar * +const char * gdk_device_get_product_id (GdkDevice *device) { g_return_val_if_fail (GDK_IS_DEVICE (device), NULL); |