diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-23 16:02:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-23 16:02:12 +0000 |
commit | 83810fbdf96dc0a842bf149cfa40749e95b0fe63 (patch) | |
tree | 84fde716b669cd10b586279106a1b02b2896088f /protocols/IcqOscarJ/src/icq_proto.cpp | |
parent | 7060a1f3dcde4355124316e6aab3a4e336812155 (diff) |
ICQ:
- version resource extracted to the separate file;
- all unicode support options removed due to the obsoleteness
- version bump.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13776 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_proto.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_proto.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/protocols/IcqOscarJ/src/icq_proto.cpp b/protocols/IcqOscarJ/src/icq_proto.cpp index a3c44e208a..5c5852e375 100644 --- a/protocols/IcqOscarJ/src/icq_proto.cpp +++ b/protocols/IcqOscarJ/src/icq_proto.cpp @@ -1270,10 +1270,7 @@ int __cdecl CIcqProto::SendMsg(MCONTACT hContact, int, const char* pszSrc) WORD wRecipientStatus = getContactStatus(hContact);
BOOL plain_ascii = IsUSASCII(puszText, mir_strlen(puszText));
-
- BOOL oldAnsi = plain_ascii || !m_bUtfEnabled ||
- !CheckContactCapabilities(hContact, CAPF_UTF) ||
- !getByte(hContact, "UnicodeSend", 1);
+ BOOL oldAnsi = plain_ascii || !CheckContactCapabilities(hContact, CAPF_UTF) || !getByte(hContact, "UnicodeSend", 1);
if (m_bTempVisListEnabled && m_iStatus == ID_STATUS_INVISIBLE)
makeContactTemporaryVisible(hContact); // make us temporarily visible to contact
|