aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-05-23 04:10:11 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-05-23 04:10:11 +0800
commit3b09469abc75b204bb206a8665c124782a9f35b8 (patch)
treefe1e525172f31ae3f2b334403d5a96a1f196f339
parent304c256fa115af14c400536d05fa1183bdcd9be6 (diff)
downloadgsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.gz
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.bz2
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.lz
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.xz
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.zst
gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.zip
unref not ref the client
2003-05-22 JP Rosevear <jpr@ximian.com> * gui/dialogs/comp-editor-page.c (comp_editor_page_destroy): unref not ref the client svn path=/trunk/; revision=21323
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/dialogs/comp-editor-page.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 11873166ca..b45a52df66 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,4 +1,9 @@
2003-05-22 JP Rosevear <jpr@ximian.com>
+
+ * gui/dialogs/comp-editor-page.c (comp_editor_page_destroy): unref
+ not ref the client
+
+2003-05-22 JP Rosevear <jpr@ximian.com>
Fixes #41329
diff --git a/calendar/gui/dialogs/comp-editor-page.c b/calendar/gui/dialogs/comp-editor-page.c
index 957b1533d5..a0fdcca3a8 100644
--- a/calendar/gui/dialogs/comp-editor-page.c
+++ b/calendar/gui/dialogs/comp-editor-page.c
@@ -166,7 +166,7 @@ comp_editor_page_destroy (GtkObject *object)
page = COMP_EDITOR_PAGE (object);
if (page->client) {
- g_object_ref((page->client));
+ g_object_unref (page->client);
page->client = NULL;
}