Mercurial > pidgin.yaz
changeset 23655:8218a2c209f1
On MSN, use "external" and "mobile" for Web messenger and mobile
devices, as Hylke suggested. I'm not sure why I had it set to "hiptop"
before.
Fixes #3385.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Mon, 28 Jul 2008 01:51:11 +0000 |
parents | 46da06b6b4ce |
children | b2609fca4943 |
files | libpurple/protocols/msn/msn.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/msn.c Thu Jul 24 04:15:13 2008 +0000 +++ b/libpurple/protocols/msn/msn.c Mon Jul 28 01:51:11 2008 +0000 @@ -621,14 +621,14 @@ if (user->clientid & MSN_CLIENT_CAP_BOT) return "bot"; if (user->clientid & MSN_CLIENT_CAP_WIN_MOBILE) - return "hiptop"; /* XXX: Rename to Mobile / Use different icon? */ + return "mobile"; #if 0 /* XXX: Since we don't support this, there's no point in showing it just yet */ if (user->clientid & MSN_CLIENT_CAP_SCHANNEL) return "secure"; #endif if (user->clientid & MSN_CLIENT_CAP_WEBMSGR) - return "web"; + return "external"; if (user->networkid == MSN_NETWORK_YAHOO) return "yahoo"; }