Replace wxOVERRIDE and wxNOEXCEPT with override and noexcept
Don't use deprecated macros in wxWidgets itself.
This commit is contained in:
parent
be5095acdd
commit
88d526660f
1282 changed files with 11878 additions and 11878 deletions
|
|
@ -14,7 +14,7 @@
|
|||
class MyApp : public wxApp
|
||||
{
|
||||
public:
|
||||
virtual bool OnInit() wxOVERRIDE;
|
||||
virtual bool OnInit() override;
|
||||
};
|
||||
|
||||
// Helper class logging menu open/close events.
|
||||
|
|
@ -62,7 +62,7 @@ class MyCanvas : public wxScrolledWindow,
|
|||
{
|
||||
public:
|
||||
MyCanvas(wxFrame *parent, const wxPoint& pos, const wxSize& size);
|
||||
virtual void OnDraw(wxDC& dc) wxOVERRIDE;
|
||||
virtual void OnDraw(wxDC& dc) override;
|
||||
|
||||
bool IsDirty() const { return m_dirty; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue