diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-22 23:04:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-23 00:40:31 +0800 |
commit | cec324e80ae88463e97e79ce16806127b512f931 (patch) | |
tree | f48fc49f1b22f2b216a3483cbdd6661819b3d7f3 /shell/main.c | |
parent | b3f707bb6783c950b0819aa4432b69a61236d23e (diff) | |
download | gsoc2013-evolution-cec324e80ae88463e97e79ce16806127b512f931.tar.gz gsoc2013-evolution-cec324e80ae88463e97e79ce16806127b512f931.tar.zst gsoc2013-evolution-cec324e80ae88463e97e79ce16806127b512f931.zip |
Bug 650491 - Shell handles forwarding uris to existing process wrong
This adds a "handle-uris" GAction which takes a string array argument,
so the URIs can be passed to the primary process verbatim.
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c index e1b768187d..95dc1b9ff4 100644 --- a/shell/main.c +++ b/shell/main.c @@ -246,7 +246,7 @@ show_development_warning (void) /* This is for doing stuff that requires the GTK+ loop to be running already. */ static gboolean -idle_cb (gchar **uris) +idle_cb (const gchar * const *uris) { EShell *shell; |