From 330abd560923fdb2e419b16729c11fc7794d5613 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 7 Sep 2001 14:45:22 +0000 Subject: Remove the "see previous error messages?" comment from the error message * 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. svn path=/trunk/; revision=12673 --- shell/ChangeLog | 8 ++++++++ shell/evolution-shell-component-client.c | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'shell') 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 + + * 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 * 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); -- cgit