From cd57de43dd2935269d5918d41baa4bb6153e591e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 20 Mar 2016 19:06:48 +0100 Subject: [PATCH] Add missing wxOVERRIDE to OS X wxNotificationMessage::AddAction() Thanks clang for a -Winconsistent-missing-override warning. --- src/osx/cocoa/notifmsg.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osx/cocoa/notifmsg.mm b/src/osx/cocoa/notifmsg.mm index 1a3b0da951..2d048f4826 100644 --- a/src/osx/cocoa/notifmsg.mm +++ b/src/osx/cocoa/notifmsg.mm @@ -126,7 +126,7 @@ public: #endif } - virtual bool AddAction(wxWindowID actionid, const wxString &label) + virtual bool AddAction(wxWindowID actionid, const wxString &label) wxOVERRIDE { if (m_actions.size() >= 1) // Currently only 1 actions are supported return false;