Mercurial > pidgin
changeset 4207:bda7855fa32f
[gaim-migrate @ 4443]
So, I figured, "Hey, it's 7am on a Sunday. Why don't I take the legend out
of OSCAR Info windows."
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 05 Jan 2003 12:09:34 +0000 |
parents | 30b5741e4c87 |
children | da30c4977c43 |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 1 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Sun Jan 05 08:31:40 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sun Jan 05 12:09:34 2003 +0000 @@ -2624,7 +2624,6 @@ fu16_t infotype; fu32_t flags; char header[BUF_LONG]; - char legend[BUF_LONG]; struct gaim_connection *gc = sess->aux_data; struct oscar_data *od = gc->proto_data; GSList *l = od->evilhack; @@ -2658,19 +2657,6 @@ } } - if (!od->icq) { - g_snprintf(legend, sizeof legend, - _("<BODY BGCOLOR=WHITE><hr><I>Legend:</I><br><br>" - "<IMG SRC=\"free_icon.gif\"> : Normal AIM User<br>" - "<IMG SRC=\"aol_icon.gif\"> : AOL User <br>" - "<IMG SRC=\"dt_icon.gif\"> : Trial AIM User <br>" - "<IMG SRC=\"admin_icon.gif\"> : Administrator <br>" - "<IMG SRC=\"ab_icon.gif\"> : ActiveBuddy Interactive Agent<br>" - "<IMG SRC=\"wireless_icon.gif\"> : Wireless Device User<br>")); - } else { - legend[0] = 0; - } - if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) { onlinesince = g_strdup_printf("Online Since : <B>%s</B><BR>\n", asctime(localtime(&info->onlinesince))); @@ -2720,8 +2706,7 @@ g_show_info_text(gc, info->sn, 2, header, (utf8 && *utf8) ? away_subs(utf8, gc->username) : - _("<i>User has no away message</i>"), - legend, NULL); + _("<i>User has no away message</i>"), NULL); } else { g_show_info_text(gc, info->sn, 0, header, @@ -2735,13 +2720,11 @@ "<i>", _("Client Capabilities: "), caps_string(info->capabilities), "</i>", - legend, NULL); } else { g_show_info_text(gc, info->sn, 1, (utf8 && *utf8) ? away_subs(utf8, gc->username) : _("<i>No Information Provided</i>"), - legend, NULL); }