# HG changeset patch # User Sean Egan # Date 1041768574 0 # Node ID bda7855fa32f36e8480b6047e327eb6e397fece8 # Parent 30b5741e4c874e5a97653206499236692baa292c [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 diff -r 30b5741e4c87 -r bda7855fa32f src/protocols/oscar/oscar.c --- 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, - _("
Legend:

" - " : Normal AIM User
" - " : AOL User
" - " : Trial AIM User
" - " : Administrator
" - " : ActiveBuddy Interactive Agent
" - " : Wireless Device User
")); - } else { - legend[0] = 0; - } - if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) { onlinesince = g_strdup_printf("Online Since : %s
\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) : - _("User has no away message"), - legend, NULL); + _("User has no away message"), NULL); } else { g_show_info_text(gc, info->sn, 0, header, @@ -2735,13 +2720,11 @@ "", _("Client Capabilities: "), caps_string(info->capabilities), "", - legend, NULL); } else { g_show_info_text(gc, info->sn, 1, (utf8 && *utf8) ? away_subs(utf8, gc->username) : _("No Information Provided"), - legend, NULL); }