diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-10-30 23:01:34 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-10-30 23:01:34 -0400 |
commit | ba91af62ad10d8bcb9563afec3b977c9de97c883 (patch) | |
tree | 8727ea3a271ab234e12e0f030f4b4d33bb0cb048 /gdk/gdkapplaunchcontext.c | |
parent | c20d217d8f96cf3dcae5f82ecf697314d562be37 (diff) | |
download | gtk+-ba91af62ad10d8bcb9563afec3b977c9de97c883.tar.gz |
Drop gdk_app_launch_context_set_screen
This function is not necessary, since we already know the display.
Diffstat (limited to 'gdk/gdkapplaunchcontext.c')
-rw-r--r-- | gdk/gdkapplaunchcontext.c | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/gdk/gdkapplaunchcontext.c b/gdk/gdkapplaunchcontext.c index ab19967c45..4f693e0995 100644 --- a/gdk/gdkapplaunchcontext.c +++ b/gdk/gdkapplaunchcontext.c @@ -42,7 +42,7 @@ * * context = gdk_display_get_app_launch_context (display); * - * gdk_app_launch_context_set_screen (screen); + * gdk_app_launch_context_set_display (display); * gdk_app_launch_context_set_timestamp (event->time); * * if (!g_app_info_launch_default_for_uri ("http://www.gtk.org", context, &error)) @@ -143,9 +143,6 @@ gdk_app_launch_context_finalize (GObject *object) if (context->display) g_object_unref (context->display); - if (context->screen) - g_object_unref (context->screen); - if (context->icon) g_object_unref (context->icon); @@ -171,39 +168,6 @@ gdk_app_launch_context_get_display (GAppLaunchContext *context, } /** - * gdk_app_launch_context_set_screen: - * @context: a #GdkAppLaunchContext - * @screen: a #GdkScreen - * - * Sets the screen on which applications will be launched when - * using this context. See also gdk_app_launch_context_set_display(). - * - * If both @screen and @display are set, the @screen takes priority. - * If neither @screen or @display are set, the default screen and - * display are used. - * - * Since: 2.14 - */ -void -gdk_app_launch_context_set_screen (GdkAppLaunchContext *context, - GdkScreen *screen) -{ - g_return_if_fail (GDK_IS_APP_LAUNCH_CONTEXT (context)); - g_return_if_fail (screen == NULL || GDK_IS_SCREEN (screen)); - - g_return_if_fail (screen == NULL || gdk_screen_get_display (screen) == context->display); - - if (context->screen) - { - g_object_unref (context->screen); - context->screen = NULL; - } - - if (screen) - context->screen = g_object_ref (screen); -} - -/** * gdk_app_launch_context_set_desktop: * @context: a #GdkAppLaunchContext * @desktop: the number of a workspace, or -1 |