Add a warning before crashing due to a known bug when it can't activate a

* evolution-shell-component-client.c
	(evolution_shell_component_client_new): Add a warning before
	crashing due to a known bug when it can't activate a component, so
	people don't have to waste any time trying to figure out what's
	up.

svn path=/trunk/; revision=3633
This commit is contained in:
Dan Winship
2000-06-19 15:39:59 +00:00
parent 97110efe38
commit bfe29e73cd
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2000-06-19 Dan Winship <danw@helixcode.com>
* evolution-shell-component-client.c
(evolution_shell_component_client_new): Add a warning before
crashing due to a known bug when it can't activate a component, so
people don't have to waste any time trying to figure out what's
up.
2000-06-13 Ettore Perazzoli <ettore@helixcode.com>
* Makefile.am: Compile the CORBA-built files,

View File

@ -359,6 +359,12 @@ 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");
/* FIXME: This is not the right call here. It will SEGV
* in Bonobo_Unknown_unref.
*/
bonobo_object_unref (BONOBO_OBJECT (new));
return NULL;
}