Update warning message to not say "CRASHING", since it won't if you have

* evolution-shell-component-client.c
	(evolution_shell_component_client_new): Update warning message to
	not say "CRASHING", since it won't if you have current bonobo.

svn path=/trunk/; revision=3795
This commit is contained in:
Dan Winship
2000-06-29 17:04:01 +00:00
parent eb200d7ae0
commit cb53a66028
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2000-06-29 Dan Winship <danw@helixcode.com>
* evolution-shell-component-client.c
(evolution_shell_component_client_new): Update warning message to
not say "CRASHING", since it won't if you have current bonobo.
2000-06-29 Peter Williams <peter@beta.newton.cx>
* e-shell.c (e_shell_restore_from_settings): Check for the

View File

@ -359,12 +359,8 @@ evolution_shell_component_client_new (const char *id)
corba_object = activate_object_from_id (id);
if (corba_object == CORBA_OBJECT_NIL) {
printf ("Could not activate component %s.\n"
"(Maybe you need to set OAF_INFO_PATH?)\n"
"CRASHING!\n", id);
/* FIXME: This is not the right call here. It will SEGV
* in Bonobo_Unknown_unref.
*/
g_warning ("Could not activate component %s. "
"(Maybe you need to set OAF_INFO_PATH?)", id);
bonobo_object_unref (BONOBO_OBJECT (new));
return NULL;
}