diff options
author | Adam Petaccia <adam@tpetaccia.com> | 2009-05-06 23:01:32 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-06 23:04:51 +0800 |
commit | 8cf036faffe5985d34c310ee89b133200380b757 (patch) | |
tree | 953aed4588e04bc8ddd3cbcebee507ce27ae674a /shell | |
parent | 28e7ec6a858fe6f8ceaaa22167584bb8f2b1728d (diff) | |
download | gsoc2013-evolution-8cf036faffe5985d34c310ee89b133200380b757.tar.gz gsoc2013-evolution-8cf036faffe5985d34c310ee89b133200380b757.tar.zst gsoc2013-evolution-8cf036faffe5985d34c310ee89b133200380b757.zip |
Bug 571496 – Migrate from deprecated gnome_execute to g_spawn/xdg-terminal
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-window-commands.c | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c index 224dd67171..289c5cbea8 100644 --- a/shell/e-shell-window-commands.c +++ b/shell/e-shell-window-commands.c @@ -27,7 +27,6 @@ #include <gtk/gtk.h> #include <glib/gprintf.h> -#include <libgnome/gnome-exec.h> #include <glib/gi18n.h> #include <gio/gio.h> @@ -60,27 +59,25 @@ /* Utility functions. */ static void -launch_pilot_settings (const char *extra_arg) +launch_pilot_settings (void) { - char *args[] = { - "gpilotd-control-applet", - (char *) extra_arg, - NULL - }; - int pid; - - args[0] = g_find_program_in_path ("gpilotd-control-applet"); - if (!args[0]) { + GError* error = NULL; + + gchar* args = g_find_program_in_path ("gpilotd-control-applet"); + if (args == NULL) { e_notice (NULL, GTK_MESSAGE_ERROR, - _("The GNOME Pilot tools do not appear to be installed on this system.")); + _("The GNOME Pilot tools do not appear to be installed on this system.")); return; - } + } - pid = gnome_execute_async (NULL, extra_arg ? 2 : 1, args); - g_free (args[0]); + g_spawn_command_line_async (args, &error); + g_free (args); - if (pid == -1) - e_notice (NULL, GTK_MESSAGE_ERROR, _("Error executing %s."), args[0]); + if (error != NULL) { + e_notice (NULL, GTK_MESSAGE_ERROR, + _("Error executing %s. (%s)"), args, error->message); + g_error_free (error); + } } @@ -1082,7 +1079,7 @@ command_pilot_settings (BonoboUIComponent *uih, EShellWindow *window, const char *path) { - launch_pilot_settings (NULL); + launch_pilot_settings (); } |