summaryrefslogtreecommitdiff
path: root/plugins/Utils/mir_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Utils/mir_buffer.h')
-rw-r--r--plugins/Utils/mir_buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Utils/mir_buffer.h b/plugins/Utils/mir_buffer.h
index 45c8af0e20..6dc35c0a88 100644
--- a/plugins/Utils/mir_buffer.h
+++ b/plugins/Utils/mir_buffer.h
@@ -41,7 +41,7 @@ static inline size_t __blen<char>(const char *str)
template<>
static inline size_t __blen<wchar_t>(const wchar_t *str)
{
- return lstrlenW(str);
+ return mir_wstrlen(str);
}
template<class T>
@@ -479,7 +479,7 @@ static void ReplaceVars(Buffer<TCHAR> *buffer, MCONTACT hContact, TCHAR **variab
{
for(int k = 0; k < numVariables; k += 2)
{
- size_t len = lstrlen(variables[k]);
+ size_t len = mir_tstrlen(variables[k]);
if (foundLen == len + 2 && _tcsncmp(&buffer->str[j]+1, variables[k], len) == 0)
{
buffer->replace(j, i + 1, variables[k + 1]);