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:
committed by
Matthias Clasen
parent
85fe6cb2c4
commit
98a30bbf3e
@ -824,10 +824,13 @@ _gdk_x11_display_supports_cursor_color (GdkDisplay *display)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
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 */
|
/* no idea, really */
|
||||||
return 20;
|
*width = *height = 20;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user