Mercurial > pidgin
diff src/protocols/msn/msn.c @ 4745:01cae9259e2f
[gaim-migrate @ 5060]
fixes a bug where if all your accounts got logged off, thus making the
buddy list disappear, you could never get it back. That makes for a bad
time when your internet connection goes out (like mine did last night)
also makes some of the prpl tooltips spiffier, and re-does some of the
handling of away messages in jabber, thus making it cooler.
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Thu, 13 Mar 2003 17:52:21 +0000 |
| parents | c15e0699acae |
| children | 677d3cb193a1 |
line wrap: on
line diff
--- a/src/protocols/msn/msn.c Thu Mar 13 10:16:59 2003 +0000 +++ b/src/protocols/msn/msn.c Thu Mar 13 17:52:21 2003 +0000 @@ -1639,12 +1639,12 @@ #endif static char *msn_status_text(struct buddy *b) { if (b->uc & UC_UNAVAILABLE) - return strip_html(msn_get_away_text(b->uc >> 1)); + return g_strdup(msn_get_away_text(b->uc >> 1)); return NULL; } static char *msn_tooltip_text(struct buddy *b) { - return strip_html(msn_get_away_text(b->uc >> 1)); + return g_strdup_printf(_("<b>Status:</b> %s"), msn_get_away_text(b->uc >> 1)); } static GList *msn_buddy_menu(struct gaim_connection *gc, char *who)
