gdkcursor-x11.c: fix building without HAVE_XCURSOR

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
This commit is contained in:
Nguyễn Thái Ngọc Duy 2010-12-28 10:19:52 +07:00 committed by Matthias Clasen
parent 85fe6cb2c4
commit 98a30bbf3e

View File

@ -824,10 +824,13 @@ _gdk_x11_display_supports_cursor_color (GdkDisplay *display)
}
void
_gdk_x11_display_get_default_cursor_size (GdkDisplay *display)
_gdk_x11_display_get_default_cursor_size (GdkDisplay *display,
guint *width,
guint *height)
{
/* no idea, really */
return 20;
*width = *height = 20;
return;
}
#endif