Mark overriding functions with wxOVERRIDE
This commit is contained in:
@@ -319,20 +319,20 @@ public:
|
|||||||
int GetIncrement() const { return int(m_increment); }
|
int GetIncrement() const { return int(m_increment); }
|
||||||
|
|
||||||
// operations
|
// operations
|
||||||
void SetValue(const wxString& value)
|
virtual void SetValue(const wxString& value) wxOVERRIDE
|
||||||
{ wxSpinCtrlGenericBase::SetValue(value); }
|
{ wxSpinCtrlGenericBase::SetValue(value); }
|
||||||
void SetValue( int value ) { DoSetValue(value, SendEvent_None); }
|
void SetValue( int value ) { DoSetValue(value, SendEvent_None); }
|
||||||
void SetRange( int minVal, int maxVal ) { DoSetRange(minVal, maxVal); }
|
void SetRange( int minVal, int maxVal ) { DoSetRange(minVal, maxVal); }
|
||||||
void SetIncrement(int inc) { DoSetIncrement(inc); }
|
void SetIncrement(int inc) { DoSetIncrement(inc); }
|
||||||
|
|
||||||
virtual int GetBase() const { return m_base; }
|
virtual int GetBase() const wxOVERRIDE { return m_base; }
|
||||||
virtual bool SetBase(int base);
|
virtual bool SetBase(int base) wxOVERRIDE;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void DoSendEvent();
|
virtual void DoSendEvent() wxOVERRIDE;
|
||||||
|
|
||||||
virtual bool DoTextToValue(const wxString& text, double *val);
|
virtual bool DoTextToValue(const wxString& text, double *val) wxOVERRIDE;
|
||||||
virtual wxString DoValueToText(double val);
|
virtual wxString DoValueToText(double val) wxOVERRIDE;
|
||||||
virtual void ResetTextValidator() wxOVERRIDE;
|
virtual void ResetTextValidator() wxOVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Reference in New Issue
Block a user