Remove unnecessary wxDummyConsoleApp::DoYield()

This function doesn't exist in the base class (any more) and so doesn't
need to be overridden and can be simply removed.
This commit is contained in:
Vadim Zeitlin 2023-03-06 18:07:11 +00:00
parent 67a5106dc2
commit f1184417a2

View file

@ -66,7 +66,6 @@ public:
wxDummyConsoleApp() { }
virtual int OnRun() override { wxFAIL_MSG( wxT("unreachable code") ); return 0; }
virtual bool DoYield(bool, long) { return true; }
wxDECLARE_NO_COPY_CLASS(wxDummyConsoleApp);
};