Mercurial > pidgin.yaz
changeset 20211:a5d366d614f5
applied changes from 606266f42c25624ce35e54483778d855641806be
through 281ddce34de8d43f4b5a0d407ca2dcdc066c8eef
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Fri, 28 Sep 2007 15:39:28 +0000 |
parents | 9d359c1b2df6 |
children | 265b235c8099 |
files | libpurple/protocols/jabber/google.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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);