From e02e3540abbe166abd2ae892c92d82f3fda016f2 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Thu, 3 Aug 2017 14:40:29 +0100 Subject: [PATCH] =?UTF-8?q?gspawn:=20Don=E2=80=99t=20mention=20removed=20g?= =?UTF-8?q?dk=5Fspawn=20functions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mention alternatives that actually still exist instead. https://bugzilla.gnome.org/show_bug.cgi?id=785520 --- glib/gspawn.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/glib/gspawn.c b/glib/gspawn.c index b621f592a..85da03d53 100644 --- a/glib/gspawn.c +++ b/glib/gspawn.c @@ -161,10 +161,10 @@ G_DEFINE_QUARK (g-spawn-exit-error-quark, g_spawn_exit_error) * You should call g_spawn_close_pid() on the returned child process * reference when you don't need it any more. * - * If you are writing a GTK+ application, and the program you are - * spawning is a graphical application, too, then you may want to - * use gdk_spawn_on_screen() instead to ensure that the spawned program - * opens its windows on the right screen. + * If you are writing a GTK+ application, and the program you are spawning is a + * graphical application too, then to ensure that the spawned program opens its + * windows on the right screen, you may want to use #GdkAppLaunchContext, + * #GAppLaunchcontext, or set the %DISPLAY environment variable. * * Note that the returned @child_pid on Windows is a handle to the child * process and not its identifier. Process handles and process identifiers @@ -666,10 +666,10 @@ g_spawn_sync (const gchar *working_directory, * If @child_pid is not %NULL and an error does not occur then the returned * process reference must be closed using g_spawn_close_pid(). * - * If you are writing a GTK+ application, and the program you - * are spawning is a graphical application, too, then you may - * want to use gdk_spawn_on_screen_with_pipes() instead to ensure that - * the spawned program opens its windows on the right screen. + * If you are writing a GTK+ application, and the program you are spawning is a + * graphical application too, then to ensure that the spawned program opens its + * windows on the right screen, you may want to use #GdkAppLaunchContext, + * #GAppLaunchcontext, or set the %DISPLAY environment variable. * * Returns: %TRUE on success, %FALSE if an error was set */