diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-24 12:20:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-24 12:20:50 +0000 |
commit | 5aed15a8d8d8e4f913539761be496e0d1ba2c4f0 (patch) | |
tree | dd9996ff223dc09154ed3c65d51ce528a9b2f81d /plugins/Scriver/src | |
parent | 2cd063aa25c633f2bf4213e007bf2df5d610d8e1 (diff) |
replace wcslen to mir_wstrlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@13813 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/msgdialog.cpp | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Scriver/src/msgdialog.cpp b/plugins/Scriver/src/msgdialog.cpp index 52840bd307..ecb1b77b01 100644 --- a/plugins/Scriver/src/msgdialog.cpp +++ b/plugins/Scriver/src/msgdialog.cpp @@ -55,7 +55,7 @@ static TCHAR* GetIEViewSelection(SrmmWindowData *dat) static TCHAR* GetQuotedTextW(TCHAR *text)
{
- size_t i, j, l = wcslen(text);
+ size_t i, j, l = mir_wstrlen(text);
int newLine = 1;
int wasCR = 0;
for (i = j = 0; i < l; i++) {
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 6b1e473fd8..8c5c4e020a 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -254,7 +254,7 @@ static void freeEvent(EventData *evt) static int AppendUnicodeOrAnsiiToBufferL(char *&buffer, size_t &cbBufferEnd, size_t &cbBufferAlloced, const WCHAR *line, size_t maxLen, BOOL isAnsii)
{
if (maxLen == -1)
- maxLen = wcslen(line);
+ maxLen = mir_wstrlen(line);
const WCHAR *maxLine = line + maxLen;
size_t lineLen = maxLen*9 + 8;
@@ -503,7 +503,7 @@ static void AppendWithCustomLinks(EventData *evt, int style, char *&buffer, size }
else {
wText = evt->pszTextW;
- len = (int)wcslen(evt->pszTextW);
+ len = (int)mir_wstrlen(evt->pszTextW);
}
for (size_t j = 0; j < len; j++) {
int newtoken = 0;
|