diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-28 17:11:36 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-28 17:11:36 +0000 |
commit | 9d81a96b2de32c863829cc048a516b943180fc79 (patch) | |
tree | db1df1c0b88ff085c83a23c8a51e6367ee3a7114 /plugins/Toaster/src/string_reference_wrapper.h | |
parent | 7496a513f28bf3bdf303f49c2f25de8e7506e51a (diff) |
Toaster: includes cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15066 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 | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/Toaster/src/string_reference_wrapper.h b/plugins/Toaster/src/string_reference_wrapper.h index ca0f8afd9f..d272ed14c7 100644 --- a/plugins/Toaster/src/string_reference_wrapper.h +++ b/plugins/Toaster/src/string_reference_wrapper.h @@ -25,14 +25,7 @@ public: template <size_t _>
StringReferenceWrapper(_In_reads_(_) wchar_t(&stringRef)[_]) throw()
{
- UINT32 length;
- HRESULT hr = SizeTToUInt32(wcslen(stringRef), &length);
-
- if (FAILED(hr))
- {
- RaiseException(static_cast<DWORD>(STATUS_INVALID_PARAMETER), EXCEPTION_NONCONTINUABLE, 0, nullptr);
- }
-
+ UINT32 length = wcslen(stringRef);
WindowsCreateStringReference(stringRef, length, &_header, &_hstring);
}
|