summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_privacy.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-23 16:43:34 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-23 16:43:34 +0000
commit11c185ebb3013230538d4a48656b23bf81d31055 (patch)
tree41f64fdbd3785621cfeb89a2c0d07ea1b2c4427f /protocols/JabberG/src/jabber_privacy.cpp
parentf2de79cb2eb8247548650ee80d75be109ac66ee7 (diff)
replace _tcscat to mir_tstrcat
git-svn-id: http://svn.miranda-ng.org/main/trunk@13778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_privacy.cpp')
-rw-r--r--protocols/JabberG/src/jabber_privacy.cpp14
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"));
}
}