diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-11-01 17:08:04 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-01 19:44:28 -0400 |
commit | 1605d378e536e5a434621cdf0a0a7415506a6f78 (patch) | |
tree | f601d542e2886f44398680e0fd9c86452fb57c25 | |
parent | 08bd079938b0bdf4c334f659fa4b2f92cec72c75 (diff) | |
download | gtk+-1605d378e536e5a434621cdf0a0a7415506a6f78.tar.gz |
Don't use GdkScreen here
The GdkScreen api is going away, so avoid using it, both
in code and in documentation.
-rw-r--r-- | gdk/gdkwindow.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index e8c42379ef..fb382d4a3a 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -1255,7 +1255,6 @@ _gdk_window_destroy_hierarchy (GdkWindow *window, { GdkWindowImplClass *impl_class; GdkWindow *temp_window; - GdkScreen *screen; GdkDisplay *display; GList *tmp; @@ -1265,7 +1264,6 @@ _gdk_window_destroy_hierarchy (GdkWindow *window, return; display = gdk_window_get_display (window); - screen = gdk_display_get_default_screen (display); switch (window->window_type) { @@ -1274,7 +1272,7 @@ _gdk_window_destroy_hierarchy (GdkWindow *window, break; case GDK_WINDOW_ROOT: - if (!screen->closed) + if (!gdk_display_is_closed (display)) { g_error ("attempted to destroy root window"); break; @@ -6671,10 +6669,10 @@ gdk_window_fullscreen_on_monitor (GdkWindow *window, * * The @mode argument is from the #GdkFullscreenMode enumeration. * If #GDK_FULLSCREEN_ON_ALL_MONITORS is specified, the fullscreen @window will - * span over all monitors from the #GdkScreen. + * span over all monitors of the display. * - * On X11, searches through the list of monitors from the #GdkScreen the ones - * which delimit the 4 edges of the entire #GdkScreen and will ask the window + * On X11, searches through the list of monitors display the ones + * which delimit the 4 edges of the entire display and will ask the window * manager to span the @window over these monitors. * * If the XINERAMA extension is not available or not usable, this function |