Resolve -Wsuggest-override warnings.

This commit is contained in:
Maarten Bent
2016-12-14 22:23:04 +01:00
parent f6f72449fe
commit 87308746be
15 changed files with 61 additions and 61 deletions

View File

@@ -31,7 +31,7 @@ public:
}
// Called when the associated descriptor is available for reading.
virtual void OnReadWaiting()
virtual void OnReadWaiting() wxOVERRIDE
{
// Sync process, process all data coming at us from the pipe so that
// the pipe does not get full and cause a deadlock situation.
@@ -44,8 +44,8 @@ public:
// These methods are never called as we only monitor the associated FD for
// reading, but we still must implement them as they're pure virtual in the
// base class.
virtual void OnWriteWaiting() { }
virtual void OnExceptionWaiting() { }
virtual void OnWriteWaiting() wxOVERRIDE { }
virtual void OnExceptionWaiting() wxOVERRIDE { }
// Disable any future calls to our OnReadWaiting(), can be called when
// we're sure that no more input is forthcoming.
@@ -93,7 +93,7 @@ public:
}
private:
virtual void DoDisable()
virtual void DoDisable() wxOVERRIDE
{
m_dispatcher.UnregisterFD(m_fd);
}
@@ -122,7 +122,7 @@ public:
}
private:
virtual void DoDisable()
virtual void DoDisable() wxOVERRIDE
{
delete m_source;
m_source = NULL;