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
|
|
@ -127,12 +127,12 @@ class TestDirTraverser : public wxDirTraverser
|
|||
public:
|
||||
wxArrayString dirs;
|
||||
|
||||
virtual wxDirTraverseResult OnFile(const wxString& WXUNUSED(filename)) wxOVERRIDE
|
||||
virtual wxDirTraverseResult OnFile(const wxString& WXUNUSED(filename)) override
|
||||
{
|
||||
return wxDIR_CONTINUE;
|
||||
}
|
||||
|
||||
virtual wxDirTraverseResult OnDir(const wxString& dirname) wxOVERRIDE
|
||||
virtual wxDirTraverseResult OnDir(const wxString& dirname) override
|
||||
{
|
||||
dirs.push_back(dirname);
|
||||
return wxDIR_CONTINUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue