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/toast_notification.cpp | |
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/toast_notification.cpp')
-rw-r--r-- | plugins/Toaster/src/toast_notification.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/Toaster/src/toast_notification.cpp b/plugins/Toaster/src/toast_notification.cpp index 5c67f4dc0c..fa3dcfa1ce 100644 --- a/plugins/Toaster/src/toast_notification.cpp +++ b/plugins/Toaster/src/toast_notification.cpp @@ -96,13 +96,11 @@ HRESULT ToastNotification::SetTextValues(_In_reads_(textValuesCount) wchar_t** t HRESULT ToastNotification::SetImageSrc(_In_z_ wchar_t* imagePath, _In_ ABI::Windows::Data::Xml::Dom::IXmlDocument* xml)
{
- wchar_t imageSrc[MAX_PATH] = L"file:///";
- HRESULT hr = StringCchCat(imageSrc, ARRAYSIZE(imageSrc), imagePath);
- if (FAILED(hr))
- return hr;
+ wchar_t imageSrc[MAX_PATH];
+ mir_snwprintf(imageSrc, _T("file:///%s"), imagePath);
Microsoft::WRL::ComPtr<ABI::Windows::Data::Xml::Dom::IXmlNode> imageNode;
- hr = GetNodeByTag(StringReferenceWrapper(L"image").Get(), &imageNode, xml);
+ HRESULT hr = GetNodeByTag(StringReferenceWrapper(L"image").Get(), &imageNode, xml);
Microsoft::WRL::ComPtr<ABI::Windows::Data::Xml::Dom::IXmlNamedNodeMap> attributes;
hr = imageNode->get_Attributes(&attributes);
|