Explicitly return Boolean value as declared

This commit is contained in:
Artur Wieczorek
2018-11-10 20:56:24 +01:00
parent e2115d0d6f
commit 43f7e35c52

View File

@@ -403,7 +403,7 @@ public:
// We don't implement bases support for floating point numbers, this is not
// very useful in practice.
virtual int GetBase() const wxOVERRIDE { return 10; }
virtual bool SetBase(int WXUNUSED(base)) wxOVERRIDE { return 0; }
virtual bool SetBase(int WXUNUSED(base)) wxOVERRIDE { return false; }
protected:
virtual void DoSendEvent() wxOVERRIDE;