committed by
Vadim Zeitlin
parent
5551932c25
commit
d639e4ffce
@@ -76,7 +76,7 @@ public:
|
||||
virtual int GetBase() const wxOVERRIDE { return m_base; }
|
||||
virtual bool SetBase(int base) wxOVERRIDE;
|
||||
virtual void SetValue(const wxString & val);
|
||||
virtual void SetValue(int val) { wxSpinCtrlQt::SetValue(val); }
|
||||
virtual void SetValue(int val) { wxSpinCtrlQt<int,QSpinBox>::SetValue(val); }
|
||||
|
||||
private:
|
||||
// Common part of all ctors.
|
||||
@@ -118,7 +118,7 @@ public:
|
||||
virtual int GetBase() const wxOVERRIDE { return 10; }
|
||||
virtual bool SetBase(int WXUNUSED(base)) wxOVERRIDE { return false; }
|
||||
virtual void SetValue(const wxString & val);
|
||||
virtual void SetValue(double val) { wxSpinCtrlQt::SetValue(val); }
|
||||
virtual void SetValue(double val) { wxSpinCtrlQt<double,QDoubleSpinBox>::SetValue(val); }
|
||||
|
||||
private:
|
||||
wxDECLARE_DYNAMIC_CLASS( wxSpinCtrlDouble );
|
||||
|
Reference in New Issue
Block a user