use wxOVERRIDE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -33,15 +33,15 @@ public:
|
||||
virtual ~wxConsoleEventLoop();
|
||||
|
||||
// implement base class pure virtuals
|
||||
virtual bool Pending() const;
|
||||
virtual bool Dispatch();
|
||||
virtual int DispatchTimeout(unsigned long timeout);
|
||||
virtual void WakeUp();
|
||||
virtual bool IsOk() const { return m_dispatcher != NULL; }
|
||||
virtual bool Pending() const wxOVERRIDE;
|
||||
virtual bool Dispatch() wxOVERRIDE;
|
||||
virtual int DispatchTimeout(unsigned long timeout) wxOVERRIDE;
|
||||
virtual void WakeUp() wxOVERRIDE;
|
||||
virtual bool IsOk() const wxOVERRIDE { return m_dispatcher != NULL; }
|
||||
|
||||
protected:
|
||||
virtual void OnNextIteration();
|
||||
virtual void DoYieldFor(long eventsToProcess);
|
||||
virtual void OnNextIteration() wxOVERRIDE;
|
||||
virtual void DoYieldFor(long eventsToProcess) wxOVERRIDE;
|
||||
|
||||
private:
|
||||
// pipe used for wake up messages: when a child thread wants to wake up
|
||||
|
Reference in New Issue
Block a user