From 156045b73be132f523ecf3bbffab22d058b61679 Mon Sep 17 00:00:00 2001 From: Dominic Letz Date: Wed, 13 Jan 2021 23:20:51 +0100 Subject: [PATCH] Use consistent event names in wxNotificationMessage documentation Follow the convention of using the event macro names (rather than the event type) names in @event documentation in wxNotificationMessage documentation too, e.g. use EVT_NOTIFICATION_MESSAGE_CLICK rather than wxEVT_NOTIFICATION_MESSAGE_CLICK. Closes https://github.com/wxWidgets/wxWidgets/pull/2166 --- interface/wx/notifmsg.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/wx/notifmsg.h b/interface/wx/notifmsg.h index b355393e24..7e53b3f2c8 100644 --- a/interface/wx/notifmsg.h +++ b/interface/wx/notifmsg.h @@ -39,13 +39,13 @@ @beginEventEmissionTable{wxCommandEvent} - @event{wxEVT_NOTIFICATION_MESSAGE_CLICK(id, func)} + @event{EVT_NOTIFICATION_MESSAGE_CLICK(id, func)} Process a @c wxEVT_NOTIFICATION_MESSAGE_CLICK event, when a notification is clicked. - @event{wxEVT_NOTIFICATION_MESSAGE_DISMISSED(id, func)} + @event{EVT_NOTIFICATION_MESSAGE_DISMISSED(id, func)} Process a @c wxEVT_NOTIFICATION_MESSAGE_DISMISSED event, when a notification is dismissed by the user or times out. - @event{wxEVT_NOTIFICATION_MESSAGE_ACTION(id, func)} + @event{EVT_NOTIFICATION_MESSAGE_ACTION(id, func)} Process a @c wxEVT_NOTIFICATION_MESSAGE_ACTION event, when the user selects on of the actions added by AddAction() @endEventTable