summaryrefslogtreecommitdiff
path: root/plugins/Toaster/src/toast_event_handler.cpp
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-09-05 11:43:00 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-09-05 11:43:00 +0000
commitc266152f2766961031a4938bdd62dad1a2135ab9 (patch)
treede7d899e910ddff54da9290b1b98dbd331ec7b84 /plugins/Toaster/src/toast_event_handler.cpp
parent45143d2f28c27382fbc112a4cefddc02813f1656 (diff)
Toaster: code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@15268 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/toast_event_handler.cpp')
-rw-r--r--plugins/Toaster/src/toast_event_handler.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/Toaster/src/toast_event_handler.cpp b/plugins/Toaster/src/toast_event_handler.cpp
index a3240b1490..4f3d5e91f9 100644
--- a/plugins/Toaster/src/toast_event_handler.cpp
+++ b/plugins/Toaster/src/toast_event_handler.cpp
@@ -53,24 +53,21 @@ IFACEMETHODIMP ToastEventHandler::Invoke(_In_ IToastNotification * /*sender*/, _
if (_callback != nullptr)
_callback(_arg);
- callbackArg *cb = (callbackArg*)_arg;
mir_cslock lck(csNotifications);
- lstNotifications.remove(cb->notification);
+ lstNotifications.remove(((callbackArg*)_arg)->notification);
return S_OK;
}
IFACEMETHODIMP ToastEventHandler::Invoke(_In_ IToastNotification* /* sender */, _In_ IToastDismissedEventArgs* /*e*/)
{
- callbackArg *cb = (callbackArg*)_arg;
mir_cslock lck(csNotifications);
- lstNotifications.remove(cb->notification);
+ lstNotifications.remove(((callbackArg*)_arg)->notification);
return S_OK;
}
IFACEMETHODIMP ToastEventHandler::Invoke(_In_ IToastNotification* /* sender */, _In_ IToastFailedEventArgs* /*e*/ )
{
- callbackArg *cb = (callbackArg*)_arg;
mir_cslock lck(csNotifications);
- lstNotifications.remove(cb->notification);
+ lstNotifications.remove(((callbackArg*)_arg)->notification);
return S_OK;
} \ No newline at end of file