diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-29 17:51:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-29 17:51:10 +0000 |
commit | 995d9bcf3ef85618ac6bc44e3b0543f9e357e661 (patch) | |
tree | e9f3816ab36c2e5cbdfebff73858d8a33a4fa02c /plugins/Toaster/src/toast_notification.cpp | |
parent | 6ebe0cdcc6bef0b8628a75d3bec6f70d2987bc94 (diff) |
oops... some more 'hides' warnings
git-svn-id: http://svn.miranda-ng.org/main/trunk@15100 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/toast_notification.cpp')
-rw-r--r-- | plugins/Toaster/src/toast_notification.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Toaster/src/toast_notification.cpp b/plugins/Toaster/src/toast_notification.cpp index fa3dcfa1ce..c3c4b506f4 100644 --- a/plugins/Toaster/src/toast_notification.cpp +++ b/plugins/Toaster/src/toast_notification.cpp @@ -186,7 +186,7 @@ HRESULT ToastNotification::CreateXml(_Outptr_ ABI::Windows::Data::Xml::Dom::IXml return SetTextValues(textValues, _countof(textValues), *xml);
}
-HRESULT ToastNotification::Create(_Outptr_ ABI::Windows::UI::Notifications::IToastNotification** notification)
+HRESULT ToastNotification::Create(_Outptr_ ABI::Windows::UI::Notifications::IToastNotification** _notification)
{
Microsoft::WRL::ComPtr<ABI::Windows::Data::Xml::Dom::IXmlDocument> xml;
HRESULT hr = CreateXml(&xml);
@@ -198,7 +198,7 @@ HRESULT ToastNotification::Create(_Outptr_ ABI::Windows::UI::Notifications::IToa if (FAILED(hr))
return hr;
- return hr = factory->CreateToastNotification(xml.Get(), notification);
+ return hr = factory->CreateToastNotification(xml.Get(), _notification);
}
HRESULT ToastNotification::Show()
|