diff options
author | JP Rosevear <jpr@ximian.com> | 2003-05-23 04:10:11 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-05-23 04:10:11 +0800 |
commit | 3b09469abc75b204bb206a8665c124782a9f35b8 (patch) | |
tree | fe1e525172f31ae3f2b334403d5a96a1f196f339 /calendar/gui/dialogs/comp-editor-page.c | |
parent | 304c256fa115af14c400536d05fa1183bdcd9be6 (diff) | |
download | gsoc2013-evolution-3b09469abc75b204bb206a8665c124782a9f35b8.tar.gz 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
Diffstat (limited to 'calendar/gui/dialogs/comp-editor-page.c')
-rw-r--r-- | calendar/gui/dialogs/comp-editor-page.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |