diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_privacy.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_privacy.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/JabberG/src/jabber_privacy.cpp b/protocols/JabberG/src/jabber_privacy.cpp index 1a38d4f043..2169b02f1d 100644 --- a/protocols/JabberG/src/jabber_privacy.cpp +++ b/protocols/JabberG/src/jabber_privacy.cpp @@ -1014,21 +1014,21 @@ void CJabberDlgPrivacyLists::ShowAdvancedList(CPrivacyList *pList) mir_tstrcpy(szPackets, _T("all"));
else {
if (dwPackets & JABBER_PL_RULE_TYPE_MESSAGE)
- _tcscat(szPackets, _T("messages"));
+ mir_tstrcat(szPackets, _T("messages"));
if (dwPackets & JABBER_PL_RULE_TYPE_PRESENCE_IN) {
if (mir_tstrlen(szPackets))
- _tcscat(szPackets, _T(", "));
- _tcscat(szPackets, _T("presence-in"));
+ mir_tstrcat(szPackets, _T(", "));
+ mir_tstrcat(szPackets, _T("presence-in"));
}
if (dwPackets & JABBER_PL_RULE_TYPE_PRESENCE_OUT) {
if (mir_tstrlen(szPackets))
- _tcscat(szPackets, _T(", "));
- _tcscat(szPackets, _T("presence-out"));
+ mir_tstrcat(szPackets, _T(", "));
+ mir_tstrcat(szPackets, _T("presence-out"));
}
if (dwPackets & JABBER_PL_RULE_TYPE_IQ) {
if (mir_tstrlen(szPackets))
- _tcscat(szPackets, _T(", "));
- _tcscat(szPackets, _T("queries"));
+ mir_tstrcat(szPackets, _T(", "));
+ mir_tstrcat(szPackets, _T("queries"));
}
}
|