# HG changeset patch # User Mark Doliner # Date 1051123743 0 # Node ID ccb0ab32ba014ac8ae7ca58c308183bc38ccb736 # Parent b81e3c496598fc089110f3d32cae86a9fd161e8d [gaim-migrate @ 5568] I don't know what just happened. committer: Tailor Script diff -r b81e3c496598 -r ccb0ab32ba01 src/protocols/zephyr/zephyr.c --- 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;