diff options
author | JP Rosevear <jpr@ximian.com> | 2003-03-29 07:21:10 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-03-29 07:21:10 +0800 |
commit | 3acdd451ad691011a10d3ea4b5e1fa52b0ecbe44 (patch) | |
tree | c4289546516cd398125ba1f5c5ab12450ffa339d | |
parent | b759bc8bc4d9bdd28336e6ed827621cd71b7c185 (diff) | |
download | gsoc2013-evolution-3acdd451ad691011a10d3ea4b5e1fa52b0ecbe44.tar.gz gsoc2013-evolution-3acdd451ad691011a10d3ea4b5e1fa52b0ecbe44.tar.zst gsoc2013-evolution-3acdd451ad691011a10d3ea4b5e1fa52b0ecbe44.zip |
the shell client is a g_object now, ref appropriately
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
svn path=/trunk/; revision=20569
-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); |