From 11c185ebb3013230538d4a48656b23bf81d31055 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 May 2015 16:43:34 +0000 Subject: replace _tcscat to mir_tstrcat git-svn-id: http://svn.miranda-ng.org/main/trunk@13778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/src/jabber_proto.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'protocols/JabberG/src/jabber_proto.cpp') 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); } } -- cgit v1.2.3