aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/event-page.c2
-rw-r--r--calendar/gui/dialogs/task-page.c2
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);
}