diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-25 11:08:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-25 11:08:13 +0800 |
commit | 2b8c7c62aa3d172e3530c0570be29dfaac501432 (patch) | |
tree | 22c72758fd3e4736946114f9f61ee35e002123d5 /shell | |
parent | 3184f3d532f7d1aabfcf49a0ba6fef9c6fcbdf5e (diff) | |
download | gsoc2013-evolution-2b8c7c62aa3d172e3530c0570be29dfaac501432.tar.gz gsoc2013-evolution-2b8c7c62aa3d172e3530c0570be29dfaac501432.tar.zst gsoc2013-evolution-2b8c7c62aa3d172e3530c0570be29dfaac501432.zip |
Exit if no command-line URIs are handled.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell.c | 4 | ||||
-rw-r--r-- | shell/main.c | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 8e05980623..4dd72e3747 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -1294,7 +1294,9 @@ unique: /* Send a message to the other Evolution process. */ unique_app_send_message (app, UNIQUE_OPEN, data); unique_message_data_free (data); - return 0; + /* As far as we're concerned, all URIs have been handled. */ + + return g_strv_length (uris); } /** diff --git a/shell/main.c b/shell/main.c index 43edb73606..5adae2ecb1 100644 --- a/shell/main.c +++ b/shell/main.c @@ -247,9 +247,10 @@ idle_cb (gchar **uris) /* These calls do the right thing when another Evolution * process is running. */ - if (uris != NULL && *uris != NULL) - e_shell_handle_uris (shell, uris); - else + if (uris != NULL && *uris != NULL) { + if (e_shell_handle_uris (shell, uris) == 0) + gtk_main_quit (); + } else e_shell_create_shell_window (shell, requested_view); /* If another Evolution process is running, we're done. */ |