# HG changeset patch # User Richard Laager # Date 1190993968 0 # Node ID a5d366d614f592006800243d12226eb6541e2450 # Parent 9d359c1b2df61f802f34b54984648154f0586ae7 applied changes from 606266f42c25624ce35e54483778d855641806be through 281ddce34de8d43f4b5a0d407ca2dcdc066c8eef diff -r 9d359c1b2df6 -r a5d366d614f5 libpurple/protocols/jabber/google.c --- a/libpurple/protocols/jabber/google.c Fri Sep 28 15:38:37 2007 +0000 +++ b/libpurple/protocols/jabber/google.c Fri Sep 28 15:39:28 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);