aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-09-07 22:45:22 +0800
committerDan Winship <danw@src.gnome.org>2001-09-07 22:45:22 +0800
commit330abd560923fdb2e419b16729c11fc7794d5613 (patch)
treea959e95bb16009d33817eb6fbc9d61681fec050f
parenta76da0a253ddde970863cce69dfba6b868c768f6 (diff)
downloadgsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar.gz
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar.bz2
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar.lz
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar.xz
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.tar.zst
gsoc2013-evolution-330abd560923fdb2e419b16729c11fc7794d5613.zip
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
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/evolution-shell-component-client.c3
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);