From 8d2de3dd91421d59850d209669de3e4f60b2a12d Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Fri, 20 Aug 2021 20:52:09 -0400 Subject: [PATCH] Add missing wxEventType declarations to notifmsg interface header Closes https://github.com/wxWidgets/wxWidgets/pull/2475 --- interface/wx/notifmsg.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/wx/notifmsg.h b/interface/wx/notifmsg.h index 7e53b3f2c8..4a66b251f8 100644 --- a/interface/wx/notifmsg.h +++ b/interface/wx/notifmsg.h @@ -216,3 +216,6 @@ public: const wxString& appId = wxString()); }; +wxEventType wxEVT_NOTIFICATION_MESSAGE_CLICK; +wxEventType wxEVT_NOTIFICATION_MESSAGE_DISMISSED; +wxEventType wxEVT_NOTIFICATION_MESSAGE_ACTION;