aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor-page.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-11-18 12:24:25 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-11-18 12:24:25 +0800
commit0931299f2341f04071311f07e8271db19d9ddc7d (patch)
tree93f115e5f5bbba965368182e643287f14aecc9ba /calendar/gui/dialogs/comp-editor-page.c
parent0a2c5b0c061ebdfe9837b165d9de7529050c2d76 (diff)
downloadgsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar.gz
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar.bz2
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar.lz
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar.xz
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.tar.zst
gsoc2013-evolution-0931299f2341f04071311f07e8271db19d9ddc7d.zip
Cleanup some ref/unref calls
2003-11-17 JP Rosevear <jpr@ximian.com> * Cleanup some ref/unref calls svn path=/trunk/; revision=23412
Diffstat (limited to 'calendar/gui/dialogs/comp-editor-page.c')
-rw-r--r--calendar/gui/dialogs/comp-editor-page.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor-page.c b/calendar/gui/dialogs/comp-editor-page.c
index 1a6611b017..64771bebed 100644
--- a/calendar/gui/dialogs/comp-editor-page.c
+++ b/calendar/gui/dialogs/comp-editor-page.c
@@ -273,11 +273,11 @@ comp_editor_page_set_e_cal (CompEditorPage *page, ECal *client)
g_return_if_fail (IS_COMP_EDITOR_PAGE (page));
if (page->client)
- g_object_unref((client));
+ g_object_unref (client);
page->client = client;
if (page->client)
- g_object_ref((client));
+ g_object_ref (client);
}
/**