diff options
author | Ignacio Casal Quinteiro <icq@gnome.org> | 2015-10-08 17:48:57 +0200 |
---|---|---|
committer | Ignacio Casal Quinteiro <icq@gnome.org> | 2015-10-08 18:07:49 +0200 |
commit | 22b0ed68078e022683bc81dbc33985837f4855d1 (patch) | |
tree | 38055fddbce742a6232ae823aa88500cde66b742 /gdk | |
parent | f45e26885c8650bbe6c5db9920c89eb8798df314 (diff) | |
download | gtk+-22b0ed68078e022683bc81dbc33985837f4855d1.tar.gz |
win32: use the same parameter name as the implementation
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/win32/gdkdisplay-win32.c | 2 | ||||
-rw-r--r-- | gdk/win32/gdkwin32display.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gdk/win32/gdkdisplay-win32.c b/gdk/win32/gdkdisplay-win32.c index 906f0bd63f..d2dbcf7d0a 100644 --- a/gdk/win32/gdkdisplay-win32.c +++ b/gdk/win32/gdkdisplay-win32.c @@ -29,7 +29,7 @@ /** * gdk_win32_display_set_cursor_theme: * @display: (type GdkWin32Display): a #GdkDisplay - * @theme: (allow-none) the name of the cursor theme to use, or %NULL to unset + * @name: (allow-none) the name of the cursor theme to use, or %NULL to unset * a previously set value * @size: the cursor size to use, or 0 to keep the previous size * diff --git a/gdk/win32/gdkwin32display.h b/gdk/win32/gdkwin32display.h index 84d51fde37..df2d98537c 100644 --- a/gdk/win32/gdkwin32display.h +++ b/gdk/win32/gdkwin32display.h @@ -52,7 +52,7 @@ GType gdk_win32_display_get_type (void); GDK_AVAILABLE_IN_3_18 void gdk_win32_display_set_cursor_theme (GdkDisplay *display, - const gchar *theme, + const gchar *name, gint size); G_END_DECLS |