diff options
author | Mike Kestner <mkestner@ximian.com> | 2002-08-31 06:56:48 +0800 |
---|---|---|
committer | Mike Kestner <mkestner@src.gnome.org> | 2002-08-31 06:56:48 +0800 |
commit | 383e4364870eecce525a20871d35cbc1fdcc06fb (patch) | |
tree | b7af4a70cc245674ff8e198049fcbaf46b698abe /calendar/gui | |
parent | e9f381a6f5d032e21d1bc007ca94c01fc9db2ba1 (diff) | |
download | gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.gz gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.bz2 gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.lz gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.xz gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.zst gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.zip |
use bonobo_object_release_unref to release the remote SelectNames
2002-08-30 Mike Kestner <mkestner@ximian.com>
* gui/dialogs/event-page.c:
* gui/dialogs/task-page.c: use bonobo_object_release_unref to release
the remote SelectNames component, not CORBA_Object_release.
svn path=/trunk/; revision=17939
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-page.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index a12bce2c47..c21b7ef5d8 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -212,7 +212,7 @@ event_page_destroy (GtkObject *object) CORBA_Environment ev; CORBA_exception_init (&ev); - CORBA_Object_release (priv->corba_select_names, &ev); + bonobo_object_release_unref (priv->corba_select_names, &ev); CORBA_exception_free (&ev); } diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c index 6b55b58c84..8e8c30e43a 100644 --- a/calendar/gui/dialogs/task-page.c +++ b/calendar/gui/dialogs/task-page.c @@ -206,7 +206,7 @@ task_page_destroy (GtkObject *object) CORBA_Environment ev; CORBA_exception_init (&ev); - CORBA_Object_release (priv->corba_select_names, &ev); + bonobo_object_release_unref (priv->corba_select_names, &ev); CORBA_exception_free (&ev); } |