From 9d81a96b2de32c863829cc048a516b943180fc79 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Fri, 28 Aug 2015 17:11:36 +0000 Subject: Toaster: includes cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@15066 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Toaster/src/toast_notification.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'plugins/Toaster/src/toast_notification.cpp') 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 imageNode; - hr = GetNodeByTag(StringReferenceWrapper(L"image").Get(), &imageNode, xml); + HRESULT hr = GetNodeByTag(StringReferenceWrapper(L"image").Get(), &imageNode, xml); Microsoft::WRL::ComPtr attributes; hr = imageNode->get_Attributes(&attributes); -- cgit v1.2.3