Mercurial > pidgin
changeset 12430:cc4c4477ea82
[gaim-migrate @ 14737]
Don't show capabilities in oscar tooltips. They're long and
not very useful. The info is still in the "get info" window.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 09 Dec 2005 04:05:55 +0000 |
parents | 59207955adc2 |
children | 8a1de97b477f |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Fri Dec 09 04:05:04 2005 +0000 +++ b/src/protocols/oscar/oscar.c Fri Dec 09 04:05:55 2005 +0000 @@ -787,12 +787,6 @@ g_free(tmp); } - if ((userinfo != NULL) && (userinfo->capabilities != 0)) { - tmp = oscar_caps_to_string(userinfo->capabilities); - oscar_string_append(str, newline, _("Capabilities"), tmp); - g_free(tmp); - } - if ((b != NULL) && (b->name != NULL) && (g != NULL) && (g->name != NULL)) { tmp = aim_ssi_getcomment(od->sess->ssi.local, g->name, b->name); if (tmp != NULL) { @@ -5053,6 +5047,12 @@ oscar_string_append(str, "\n<br>", _("Member Since"), ctime(&t)); } + if (userinfo->capabilities != 0) { + tmp = oscar_caps_to_string(userinfo->capabilities); + oscar_string_append(str, "\n<br>", _("Capabilities"), tmp); + g_free(tmp); + } + if (userinfo->present & AIM_USERINFO_PRESENT_IDLE) { tmp = gaim_str_seconds_to_string(userinfo->idletime*60); oscar_string_append(str, "\n<br>", _("Idle"), tmp);