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 | |
parent | e9f381a6f5d032e21d1bc007ca94c01fc9db2ba1 (diff) | |
download | gsoc2013-evolution-383e4364870eecce525a20871d35cbc1fdcc06fb.tar.gz 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')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-page.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 77a0474d9d..778b472665 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +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. + 2002-08-29 JP Rosevear <jpr@ximian.com> * gui/e-day-view.c (e_day_view_on_top_canvas_button_press): select 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); } |