diff options
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |