[evolution-ews/gnome-2-28] Replace g_object_unref with camel_object_unref for camel_objects in calendar.



commit 372513f895669af641fa350fd1d56bd49b32858a
Author: Chenthill Palanisamy <pchenthill novell com>
Date:   Tue Sep 13 07:44:09 2011 +0530

    Replace g_object_unref with camel_object_unref for camel_objects in
    calendar.

 src/calendar/e-cal-backend-ews.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/calendar/e-cal-backend-ews.c b/src/calendar/e-cal-backend-ews.c
index 379d4c4..cb7be4e 100644
--- a/src/calendar/e-cal-backend-ews.c
+++ b/src/calendar/e-cal-backend-ews.c
@@ -2574,8 +2574,8 @@ ewscal_send_cancellation_email (ECalBackend *backend, EEwsConnection *cnc, Camel
 	camel_multipart_add_part (multi, text_part);
 	camel_multipart_set_boundary (multi, NULL);
 	camel_multipart_add_part (multi, vcal_part);
-	g_object_unref (text_part);
-	g_object_unref (vcal_part);
+	camel_object_unref (text_part);
+	camel_object_unref (vcal_part);
 
 	message = camel_mime_message_new ();
 	camel_mime_message_set_subject (message, subject);
@@ -2591,7 +2591,7 @@ ewscal_send_cancellation_email (ECalBackend *backend, EEwsConnection *cnc, Camel
 		g_clear_error (&error);
 	}
 
-	g_object_unref (message);
+	camel_object_unref (message);
 	icalcomponent_free (vcal);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]