diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 16:43:34 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-23 16:43:34 +0000 |
commit | 11c185ebb3013230538d4a48656b23bf81d31055 (patch) | |
tree | 41f64fdbd3785621cfeb89a2c0d07ea1b2c4427f /protocols/JabberG/src/jabber_proto.cpp | |
parent | f2de79cb2eb8247548650ee80d75be109ac66ee7 (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_proto.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.cpp | 10 |
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);
}
}
|