diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 02ccd1eedd..bc177b7cc2 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2003-03-28 JP Rosevear <jpr@ximian.com> + + * gui/e-itip-control.c (get_servers): the shell client is a + g_object now, ref appropriately + 2003-03-28 Hans Petter Jansson <hpj@ximian.com> * gui/e-day-view.c (comp_destroy_cb) @@ -20,7 +25,7 @@ Destroy would-be children of the container before the container. 2003-03-28 JP Rosevear <jpr@ximian.com> - + * gui/dialogs/meeting-page.c (meeting_page_init): init new members (get_current_account): get a matching account for the currently selected user in the combo diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 0760ddd6ba..48eeae1672 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -233,7 +233,7 @@ get_servers (EItipControl *itip, EvolutionShellClient *shell_client, const char servers = g_ptr_array_new (); - bonobo_object_ref (BONOBO_OBJECT (shell_client)); + g_object_ref (shell_client); registry = evolution_shell_client_get_storage_registry_interface (shell_client); CORBA_exception_init (&ev); |