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
|
|
@ -22,7 +22,7 @@ class MyApp: public wxApp
|
|||
public:
|
||||
MyApp() { }
|
||||
|
||||
virtual bool OnInit() wxOVERRIDE;
|
||||
virtual bool OnInit() override;
|
||||
|
||||
private:
|
||||
wxDECLARE_NO_COPY_CLASS(MyApp);
|
||||
|
|
@ -74,8 +74,8 @@ public:
|
|||
|
||||
void OnRightClick(wxMouseEvent& event);
|
||||
|
||||
virtual void CheckItem(long item, bool check) wxOVERRIDE;
|
||||
virtual bool IsItemChecked(long item) const wxOVERRIDE;
|
||||
virtual void CheckItem(long item, bool check) override;
|
||||
virtual bool IsItemChecked(long item) const override;
|
||||
|
||||
private:
|
||||
void ShowContextMenu(const wxPoint& pos, long item);
|
||||
|
|
@ -84,10 +84,10 @@ private:
|
|||
void LogEvent(const wxListEvent& event, const wxString& eventName);
|
||||
void LogColEvent(const wxListEvent& event, const wxString& eventName);
|
||||
|
||||
virtual wxString OnGetItemText(long item, long column) const wxOVERRIDE;
|
||||
virtual bool OnGetItemIsChecked(long item) const wxOVERRIDE;
|
||||
virtual int OnGetItemColumnImage(long item, long column) const wxOVERRIDE;
|
||||
virtual wxItemAttr *OnGetItemAttr(long item) const wxOVERRIDE;
|
||||
virtual wxString OnGetItemText(long item, long column) const override;
|
||||
virtual bool OnGetItemIsChecked(long item) const override;
|
||||
virtual int OnGetItemColumnImage(long item, long column) const override;
|
||||
virtual wxItemAttr *OnGetItemAttr(long item) const override;
|
||||
|
||||
long m_updated;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue