diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-02 11:27:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-02 11:27:40 +0000 |
commit | 12f17314feedc58355930ab9942c231985537390 (patch) | |
tree | 0b17e34a99aeb2026b2e77f556c4ff2edbf3b027 /protocols | |
parent | 64c99add688acdc88215d9e911525faedff1bd3e (diff) |
MRA: not to show the Mobile status in menu
git-svn-id: http://svn.miranda-ng.org/main/trunk@8008 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MRA/src/MraProto.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/MRA/src/MraProto.cpp b/protocols/MRA/src/MraProto.cpp index 4cab8e9a78..2c9deba976 100644 --- a/protocols/MRA/src/MraProto.cpp +++ b/protocols/MRA/src/MraProto.cpp @@ -282,7 +282,7 @@ DWORD_PTR CMraProto::GetCaps(int type, HANDLE hContact) PF1_ADDSEARCHRES | PF1_CONTACT | PF1_SEARCHBYEMAIL | PF1_USERIDISEMAIL | PF1_SEARCHBYNAME | PF1_EXTSEARCHUI;
case PFLAGNUM_2:
- return PF2_ONLINE | PF2_INVISIBLE | PF2_SHORTAWAY | PF2_HEAVYDND | PF2_FREECHAT;
+ return PF2_ONLINE | PF2_INVISIBLE | PF2_SHORTAWAY | PF2_HEAVYDND | PF2_FREECHAT | PF2_ONTHEPHONE;
case PFLAGNUM_3:
return PF2_ONLINE | PF2_INVISIBLE | PF2_SHORTAWAY | PF2_HEAVYDND | PF2_FREECHAT;
@@ -290,6 +290,9 @@ DWORD_PTR CMraProto::GetCaps(int type, HANDLE hContact) case PFLAGNUM_4:
return PF4_FORCEAUTH | PF4_FORCEADDED | PF4_SUPPORTTYPING | PF4_AVATARS | PF4_IMSENDUTF;
+ case PFLAGNUM_5:
+ return PF2_ONTHEPHONE;
+
case PFLAG_UNIQUEIDTEXT:
return (INT_PTR)Translate("E-mail address");
|