From bc90469e7f3bfd31dc6530c2d1ba1cc519a8a3a7 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 23 Apr 2010 10:28:53 -0400 Subject: Camel is now GObject-based. --- e-util/e-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'e-util/e-util.c') diff --git a/e-util/e-util.c b/e-util/e-util.c index 7b17f110f5..e55edfb883 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -1488,7 +1488,7 @@ static gpointer e_camel_object_copy (gpointer camel_object) { if (CAMEL_IS_OBJECT (camel_object)) - camel_object_ref (camel_object); + g_object_ref (camel_object); return camel_object; } @@ -1497,7 +1497,7 @@ static void e_camel_object_free (gpointer camel_object) { if (CAMEL_IS_OBJECT (camel_object)) - camel_object_unref (camel_object); + g_object_unref (camel_object); } GType -- cgit v1.2.3