diff options
-rw-r--r-- | shell/ChangeLog | 8 | ||||
-rw-r--r-- | shell/evolution-shell-component-client.c | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 08672f0a2c..210b0bea30 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,11 @@ +2001-09-07 Dan Winship <danw@ximian.com> + + * evolution-shell-component-client.c + (evolution_shell_component_client_new): Remove the "see previous + error messages?" comment from the error message when starting a + component, since oafd eats the output of the components it + launches now, so it's just misleading. + 2001-09-06 Chris Toshok <toshok@ximian.com> * evolution-storage.c (impl_Storage_async_remove_folder): change diff --git a/shell/evolution-shell-component-client.c b/shell/evolution-shell-component-client.c index 8d41f20785..bba3cb462e 100644 --- a/shell/evolution-shell-component-client.c +++ b/shell/evolution-shell-component-client.c @@ -387,8 +387,7 @@ evolution_shell_component_client_new (const char *id) corba_object = oaf_activate_from_id ((char *) id, 0, NULL, &ev); /* Yuck. */ if (ev._major != CORBA_NO_EXCEPTION) { CORBA_exception_free (&ev); - g_warning ("Could not start up component for %s. " - "(See previous error messages?)", id); + g_warning ("Could not start up component for %s.", id); return NULL; } CORBA_exception_free (&ev); |