Replace wxOVERRIDE and wxNOEXCEPT with override and noexcept

Don't use deprecated macros in wxWidgets itself.
This commit is contained in:
PB 2022-10-12 17:07:48 +02:00 committed by Vadim Zeitlin
parent be5095acdd
commit 88d526660f
1282 changed files with 11878 additions and 11878 deletions

View file

@ -14,14 +14,14 @@
class MyApp: public wxApp
{
public:
bool OnInit(void) wxOVERRIDE;
bool OnInit(void) override;
};
class MyCanvas: public wxScrolledWindow
{
public:
MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size);
virtual void OnDraw(wxDC& dc) wxOVERRIDE;
virtual void OnDraw(wxDC& dc) override;
void OnEvent(wxMouseEvent& event);
wxDECLARE_EVENT_TABLE();