diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-10-25 15:52:57 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-10-25 15:52:57 -0400 |
commit | 6b231af45e11a9d29fc9639cb16f7588830f34c4 (patch) | |
tree | c1632cedd04f7da24ee40fc971df78fa1d12a948 /gdk/gdkapplaunchcontext.c | |
parent | 5cb3fc4c4f2e829a81fd68b175a0d073f21355a0 (diff) | |
download | gtk+-6b231af45e11a9d29fc9639cb16f7588830f34c4.tar.gz |
Remove deprecated gdk_app_launch_context_set_display
Diffstat (limited to 'gdk/gdkapplaunchcontext.c')
-rw-r--r-- | gdk/gdkapplaunchcontext.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gdk/gdkapplaunchcontext.c b/gdk/gdkapplaunchcontext.c index f28861f8c3..ab19967c45 100644 --- a/gdk/gdkapplaunchcontext.c +++ b/gdk/gdkapplaunchcontext.c @@ -171,28 +171,6 @@ gdk_app_launch_context_get_display (GAppLaunchContext *context, } /** - * gdk_app_launch_context_set_display: - * @context: a #GdkAppLaunchContext - * @display: a #GdkDisplay - * - * Sets the display on which applications will be launched when - * using this context. See also gdk_app_launch_context_set_screen(). - * - * Since: 2.14 - * - * Deprecated: 3.0: Use gdk_display_get_app_launch_context() instead - */ -void -gdk_app_launch_context_set_display (GdkAppLaunchContext *context, - GdkDisplay *display) -{ - g_return_if_fail (GDK_IS_APP_LAUNCH_CONTEXT (context)); - g_return_if_fail (display == NULL || GDK_IS_DISPLAY (display)); - - g_warn_if_fail (display == NULL || display == context->display); -} - -/** * gdk_app_launch_context_set_screen: * @context: a #GdkAppLaunchContext * @screen: a #GdkScreen |