libpurple/protocols/jabber/google.c

changeset 20640
a8567c47fa17
parent 20390
7e05fb12fca0
child 20114
96e715e155e0
child 21195
fd63ef5027d7
--- a/libpurple/protocols/jabber/google.c	Thu Sep 20 05:28:33 2007 +0000
+++ b/libpurple/protocols/jabber/google.c	Thu Sep 20 06:21:37 2007 +0000
@@ -62,14 +62,14 @@
 	default_tos[0] = jabber_get_bare_jid(to);
 
 	if (count == 0) {
-		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, default_tos, NULL, NULL, NULL);
+		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, (const char**) default_tos, NULL, NULL, NULL);
 		g_free(default_tos[0]);
 		return;
 	}
 
 	message = xmlnode_get_child(child, "mail-thread-info");
 	if (!message) {
-		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, default_tos, NULL, NULL, NULL);
+		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, (const char**) default_tos, NULL, NULL, NULL);
 		g_free(default_tos[0]);
 		return;
 	}
@@ -128,7 +128,7 @@
 		purple_notify_emails(js->gc, count, count == i, (const char**) subjects, froms, tos,
 				urls, NULL, NULL);
 	else 
-		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, default_tos, NULL, NULL, NULL);
+		purple_notify_emails(js->gc, count, FALSE, NULL, NULL, (const char**) default_tos, NULL, NULL, NULL);
 
 
 	g_free(to_name);

mercurial