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 /mail/mail-ops.c | |
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 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index a8aa14d278..896ec73aec 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -36,7 +36,6 @@ #include <glib.h> #include <glib/gstdio.h> -#include <libgnome/gnome-exec.h> #include <glib/gi18n.h> #include <camel/camel-mime-filter-from.h> @@ -2514,7 +2513,7 @@ mail_execute_shell_command (CamelFilterDriver *driver, int argc, char **argv, vo if (argc <= 0) return; - gnome_execute_async_fds (NULL, argc, argv, TRUE); + g_spawn_async (NULL, argv, NULL, 0, NULL, data, NULL, NULL); } /* Async service-checking/authtype-lookup code. */ |