Add more wxOVERRIDE to avoid clang warnings

This fixes several thousands of -Winconsistent-missing-override warnings
given by Xcode 10 when building the library.
This commit is contained in:
Vadim Zeitlin
2019-04-17 19:05:31 +02:00
parent 22369e97fc
commit b53c516564
6 changed files with 9 additions and 9 deletions

View File

@@ -39,8 +39,8 @@ public:
// override base class virtuals
virtual void SetItemLabel(const wxString& strName) wxOVERRIDE;
virtual void Enable(bool bDoEnable = true);
virtual void Check(bool bDoCheck = true);
virtual void Enable(bool bDoEnable = true) wxOVERRIDE;
virtual void Check(bool bDoCheck = true) wxOVERRIDE;
virtual void SetBitmap(const wxBitmap& bitmap) ;
virtual const wxBitmap& GetBitmap() const { return m_bitmap; }