aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-model.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-12-07 08:17:04 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-12-07 08:17:04 +0800
commita86bcdd036ea915f23e3532748ca726de039d584 (patch)
tree4afcde83d3a792e2656ac7f7b954089a84c6656c /calendar/gui/e-meeting-model.c
parent92b2a3c90af03a839fab06efb96429c9d4976ddd (diff)
downloadgsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar.gz
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar.bz2
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar.lz
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar.xz
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.tar.zst
gsoc2013-evolution-a86bcdd036ea915f23e3532748ca726de039d584.zip
Explicitly destroy the EMeetingModel. This is a hack to work around
2001-12-06 Jon Trowbridge <trow@ximian.com> * gui/dialogs/event-editor.c (event_editor_destroy): Explicitly destroy the EMeetingModel. This is a hack to work around problems with the reference counting; we are still leaking the EMeetingModels. * gui/e-meeting-time-sel.c (e_meeting_time_selector_construct): Ref our EMeetingModel. (e_meeting_time_selector_destroy): Unref the model. * gui/e-meeting-model.c (destroy): Properly destroy corba_select_names with a call to bonobo_object_release_unref. (Fixes 14002) svn path=/trunk/; revision=14919
Diffstat (limited to 'calendar/gui/e-meeting-model.c')
-rw-r--r--calendar/gui/e-meeting-model.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-model.c b/calendar/gui/e-meeting-model.c
index d80c95fb41..f9a692f3b7 100644
--- a/calendar/gui/e-meeting-model.c
+++ b/calendar/gui/e-meeting-model.c
@@ -688,6 +688,13 @@ destroy (GtkObject *obj)
if (priv->ebook != NULL)
gtk_object_unref (GTK_OBJECT (priv->ebook));
+
+ if (priv->corba_select_names != CORBA_OBJECT_NIL) {
+ CORBA_Environment ev;
+ CORBA_exception_init (&ev);
+ bonobo_object_release_unref (priv->corba_select_names, &ev);
+ CORBA_exception_free (&ev);
+ }
g_free (priv);
}