From 5aed15a8d8d8e4f913539761be496e0d1ba2c4f0 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 24 May 2015 12:20:50 +0000 Subject: replace wcslen to mir_wstrlen git-svn-id: http://svn.miranda-ng.org/main/trunk@13813 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Scriver/src/msgdialog.cpp | 2 +- plugins/Scriver/src/msglog.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Scriver/src') 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; -- cgit v1.2.3