diff options
-rw-r--r-- | shell/ChangeLog | 8 | ||||
-rw-r--r-- | shell/e-shell.c | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 00c4cf0d92..be73a62d09 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,13 @@ 2001-10-05 Ettore Perazzoli <ettore@ximian.com> + * 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. + +2001-10-05 Ettore Perazzoli <ettore@ximian.com> + * main.c (quit_box_new): Also `gdk_flush()'. (idle_cb): If the user doesn't specify at least one `evolution:' URI, restore from the settings. [Fixes #6093.] 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); |