Mercurial > pidgin
changeset 5202:ccb0ab32ba01
[gaim-migrate @ 5568]
I don't know what just happened.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 23 Apr 2003 18:49:03 +0000 |
parents | b81e3c496598 |
children | 824f0ecf47ee |
files | src/protocols/zephyr/zephyr.c |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/zephyr/zephyr.c Wed Apr 23 18:46:45 2003 +0000 +++ b/src/protocols/zephyr/zephyr.c Wed Apr 23 18:49:03 2003 +0000 @@ -945,6 +945,11 @@ } } +static const char *zephyr_list_icon(struct gaim_account *a, struct buddy *b) +{ + return "zephyr"; +} + static struct prpl *my_protocol = NULL; void zephyr_init(struct prpl *ret) @@ -952,6 +957,7 @@ ret->protocol = PROTO_ZEPHYR; ret->options = OPT_PROTO_NO_PASSWORD; ret->name = g_strdup("Zephyr"); + ret->list_icon = zephyr_list_icon; ret->login = zephyr_login; ret->close = zephyr_close; ret->add_buddy = zephyr_add_buddy;