X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12f5e1e78fe906050ff2fee9529476db332633f0..7eaed395dd7174051bd3ff7e1ed46d9c7cda87cc:/interface/wx/spinbutt.h diff --git a/interface/wx/spinbutt.h b/interface/wx/spinbutt.h index 186669d52d..b8518c5a59 100644 --- a/interface/wx/spinbutt.h +++ b/interface/wx/spinbutt.h @@ -107,7 +107,7 @@ public: /** Destructor, destroys the spin button control. */ - ~wxSpinButton(); + virtual ~wxSpinButton(); /** Scrollbar creation function called by the spin button constructor. @@ -124,21 +124,21 @@ public: @see SetRange() */ - int GetMax() const; + virtual int GetMax() const; /** Returns the minimum permissible value. @see SetRange() */ - int GetMin() const; + virtual int GetMin() const; /** Returns the current spin button value. @see SetValue() */ - int GetValue() const; + virtual int GetValue() const; /** Sets the range of the spin button. @@ -150,7 +150,7 @@ public: @see GetMin(), GetMax() */ - void SetRange(int min, int max); + virtual void SetRange(int min, int max); /** Sets the value of the spin button. @@ -158,6 +158,6 @@ public: @param value The value for the spin button. */ - void SetValue(int value); + virtual void SetValue(int value); };