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
|
|
@ -923,8 +923,8 @@ class LifeModule: public wxModule
|
|||
|
||||
public:
|
||||
LifeModule() {}
|
||||
bool OnInit() wxOVERRIDE;
|
||||
void OnExit() wxOVERRIDE;
|
||||
bool OnInit() override;
|
||||
void OnExit() override;
|
||||
};
|
||||
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(LifeModule, wxModule);
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ private:
|
|||
class LifeApp : public wxApp
|
||||
{
|
||||
public:
|
||||
virtual bool OnInit() wxOVERRIDE;
|
||||
virtual bool OnInit() override;
|
||||
};
|
||||
|
||||
#endif // _LIFE_APP_H_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue