summaryrefslogtreecommitdiff
path: root/plugins/Boltun
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Boltun')
-rw-r--r--plugins/Boltun/src/Engine/Mind.cpp4
-rw-r--r--plugins/Boltun/src/Engine/TalkEngine.cpp2
-rw-r--r--plugins/Boltun/src/boltun.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Boltun/src/Engine/Mind.cpp b/plugins/Boltun/src/Engine/Mind.cpp
index 91b2dc4a84..5158a459e6 100644
--- a/plugins/Boltun/src/Engine/Mind.cpp
+++ b/plugins/Boltun/src/Engine/Mind.cpp
@@ -134,7 +134,7 @@ void Mind::Load(tstring filename)
format(st);
count = st.length();
c = co = new TCHAR[count + 1];
- _tcscpy(c, st.c_str());
+ mir_tstrcpy(c, st.c_str());
size_t pos = 0;
while (pos < count && _istspace(*c))
{
@@ -259,7 +259,7 @@ void Mind::Load(tstring filename)
tstring sc(c);
int count1 = (int)s1.length();
TCHAR *c = new TCHAR[count1 + 1];
- _tcscpy(c, s1.c_str());
+ mir_tstrcpy(c, s1.c_str());
CharLower(c);
s1 = c;
delete c;
diff --git a/plugins/Boltun/src/Engine/TalkEngine.cpp b/plugins/Boltun/src/Engine/TalkEngine.cpp
index 8d4efbf476..1c4465402b 100644
--- a/plugins/Boltun/src/Engine/TalkEngine.cpp
+++ b/plugins/Boltun/src/Engine/TalkEngine.cpp
@@ -274,7 +274,7 @@ tstring TalkBot::AllReplies(const tstring &incomingMessage, ContactData *contact
TalkBot::MessageInfo* TalkBot::Reply(MCONTACT contact, tstring incomingMessage, bool saveChoice)
{
TCHAR* str = new TCHAR[incomingMessage.length() + 1];
- _tcscpy(str, incomingMessage.c_str());
+ mir_tstrcpy(str, incomingMessage.c_str());
CharLower(str);
incomingMessage = str;
delete[] str;
diff --git a/plugins/Boltun/src/boltun.cpp b/plugins/Boltun/src/boltun.cpp
index 7a3796ecc9..2f8abd7a01 100644
--- a/plugins/Boltun/src/boltun.cpp
+++ b/plugins/Boltun/src/boltun.cpp
@@ -380,7 +380,7 @@ static INT_PTR CALLBACK EngineDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LP
const size_t fileNameSize = 5000;
TCHAR *filename = new TCHAR[fileNameSize];
TCHAR *fullname = GetFullName(Config.MindFileName);
- _tcscpy(filename, fullname);
+ mir_tstrcpy(filename, fullname);
if (fullname != Config.MindFileName)
delete[] fullname;