diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-14 20:49:11 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-14 20:49:11 +0300 |
commit | f2a8e1b955cca4660629877fe2d2a845f8041753 (patch) | |
tree | afdc0bac20421b896d920df6d0ca2ad2038ed888 /protocols | |
parent | d71bd60cf9fe98f3782fe008e285470be257eb23 (diff) |
related to #1765 - "Free for chat" status removed
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Icq10/src/proto.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/protocols/Icq10/src/proto.cpp b/protocols/Icq10/src/proto.cpp index fa116b577e..fbf6336b73 100644 --- a/protocols/Icq10/src/proto.cpp +++ b/protocols/Icq10/src/proto.cpp @@ -269,18 +269,15 @@ INT_PTR CIcqProto::GetCaps(int type, MCONTACT) break; case PFLAGNUM_2: - return PF2_ONLINE | PF2_SHORTAWAY | PF2_LONGAWAY | PF2_LIGHTDND | PF2_HEAVYDND | PF2_FREECHAT | PF2_INVISIBLE | PF2_ONTHEPHONE; + return PF2_ONLINE | PF2_SHORTAWAY | PF2_LONGAWAY | PF2_LIGHTDND | PF2_HEAVYDND | PF2_INVISIBLE; case PFLAGNUM_3: - return PF2_ONLINE | PF2_SHORTAWAY | PF2_LONGAWAY | PF2_LIGHTDND | PF2_HEAVYDND | PF2_FREECHAT | PF2_INVISIBLE; + return PF2_ONLINE | PF2_SHORTAWAY | PF2_LONGAWAY | PF2_LIGHTDND | PF2_HEAVYDND | PF2_INVISIBLE; case PFLAGNUM_4: nReturn = PF4_FORCEAUTH | PF4_SUPPORTIDLE | PF4_IMSENDOFFLINE | PF4_SUPPORTTYPING | PF4_AVATARS | PF4_SERVERMSGID; break; - case PFLAGNUM_5: - return PF2_FREECHAT | PF2_ONTHEPHONE; - case PFLAG_UNIQUEIDTEXT: return (INT_PTR)Translate("ICQ number or phone"); } |