diff options
Diffstat (limited to 'plugins/Toaster/src/toast_event_handler.h')
-rw-r--r-- | plugins/Toaster/src/toast_event_handler.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Toaster/src/toast_event_handler.h b/plugins/Toaster/src/toast_event_handler.h index bdad152a4e..a0efcbac2e 100644 --- a/plugins/Toaster/src/toast_event_handler.h +++ b/plugins/Toaster/src/toast_event_handler.h @@ -10,7 +10,7 @@ struct ToastHandlerData; class ToastEventHandler : public Microsoft::WRL::Implements<DesktopToastActivatedEventHandler, DesktopToastDismissedEventHandler, DesktopToastFailedEventHandler>
{
public:
- ToastEventHandler::ToastEventHandler(_In_ ToastHandlerData*);
+ explicit ToastEventHandler(_In_ ToastHandlerData*);
~ToastEventHandler();
IFACEMETHODIMP_(ULONG) AddRef();
@@ -30,8 +30,7 @@ private: std::unique_ptr<ToastHandlerData> _thd;
void DestroyNotification();
-
- void CallPopupProc(UINT uMsg);
+ LRESULT CallPopupProc(UINT uMsg);
};
#endif //_TOAST_EVENT_HANDLER_H_
\ No newline at end of file |