mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 14:10:30 +00:00
use the GdkDisplay get_setting vfunc
Instead of calling the GdkScreen implementation, use our own vfunc now.
This commit is contained in:
parent
19157c5bf4
commit
f9dacd6de0
@ -2238,7 +2238,11 @@ gdk_display_get_setting (GdkDisplay *display,
|
||||
const char *name,
|
||||
GValue *value)
|
||||
{
|
||||
return gdk_screen_get_setting (gdk_display_get_default_screen (display), name, value);
|
||||
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
||||
g_return_val_if_fail (name != NULL, FALSE);
|
||||
g_return_val_if_fail (value != NULL, FALSE);
|
||||
|
||||
return GDK_DISPLAY_GET_CLASS (display)->get_setting (display, name, value);
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user