summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_proto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rw-r--r--protocols/JabberG/src/jabber_proto.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp
index ea0d16f51b..1ae734e4ba 100644
--- a/protocols/JabberG/src/jabber_proto.cpp
+++ b/protocols/JabberG/src/jabber_proto.cpp
@@ -1152,13 +1152,13 @@ void __cdecl CJabberProto::GetAwayMsgThread(void *param)
for (int i = 0; i < item->arResources.getCount(); i++) {
JABBER_RESOURCE_STATUS *r = item->arResources[i];
if (r->m_tszStatusMessage) {
- if (str[0] != '\0') _tcscat(str, _T("\r\n"));
+ if (str[0] != '\0') mir_tstrcat(str, _T("\r\n"));
if (msgCount > 1) {
- _tcscat(str, _T("("));
- _tcscat(str, r->m_tszResourceName);
- _tcscat(str, _T("): "));
+ mir_tstrcat(str, _T("("));
+ mir_tstrcat(str, r->m_tszResourceName);
+ mir_tstrcat(str, _T("): "));
}
- _tcscat(str, r->m_tszStatusMessage);
+ mir_tstrcat(str, r->m_tszStatusMessage);
}
}