aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-06 03:49:21 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-06 03:49:21 +0800
commitb36809d0b836c0d7816952c97fd26c6d50398f1a (patch)
treec5888313634e4abf4ccd0f93fddb9333f3d59598 /shell/e-shell.c
parentb6c919243e98e9a509018e2cec0fff62d945be7d (diff)
downloadgsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar.gz
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar.bz2
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar.lz
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar.xz
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.tar.zst
gsoc2013-evolution-b36809d0b836c0d7816952c97fd26c6d50398f1a.zip
Handle the return value from
* e-shell.c (impl_Shell_handleURI): Handle the return value from `evolution_shell_component_client_handle_external_uri()' as an EvolutionShellComponentClientResult instead of treating it as a boolean. This prevents the incorrect NotFound exceptions we were getting for `mailto:' invocations. svn path=/trunk/; revision=13460
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index bafe7ea2d5..65a469bcf2 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -348,7 +348,8 @@ impl_Shell_handleURI (PortableServer_Servant servant,
return;
}
- if (! evolution_shell_component_client_handle_external_uri (schema_handler, uri)) {
+ if (evolution_shell_component_client_handle_external_uri (schema_handler, uri)
+ != EVOLUTION_SHELL_COMPONENT_OK) {
/* FIXME: Just a wild guess here. */
CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
ex_GNOME_Evolution_Shell_NotFound, NULL);