diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-31 08:07:29 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-31 08:07:29 +0000 |
commit | 9331a9d035bb1b2f9e08ef9141acad1e180fb70b (patch) | |
tree | a68e84905f289c9bf67c0015ff1d06c27b04bf06 /plugins/Toaster/src/string_reference_wrapper.h | |
parent | 291d2b6a67bf9501c5427758092805b66aa44dcf (diff) |
Toaster: wcslen -> mir_wstrlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@15125 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/string_reference_wrapper.h')
-rw-r--r-- | plugins/Toaster/src/string_reference_wrapper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Toaster/src/string_reference_wrapper.h b/plugins/Toaster/src/string_reference_wrapper.h index 4ce37d5245..6daeb0fee1 100644 --- a/plugins/Toaster/src/string_reference_wrapper.h +++ b/plugins/Toaster/src/string_reference_wrapper.h @@ -25,7 +25,7 @@ public: template <size_t _>
StringReferenceWrapper(_In_reads_(_) wchar_t(&stringRef)[_]) throw()
{
- size_t length = wcslen(stringRef);
+ size_t length = mir_wstrlen(stringRef);
WindowsCreateStringReference(stringRef, length, &_header, &_hstring);
}
|