]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/spinbutt.h
Applied patch [ 819044 ] Adds MSW wxPen::GetDashCount
[wxWidgets.git] / include / wx / spinbutt.h
index 78b8c96225a71a475194010279606947ecb0815d..a4f3073f77fdb908427bb3738c4a530668a6088b 100644 (file)
@@ -39,7 +39,8 @@
 class WXDLLEXPORT wxSpinButtonBase : public wxControl
 {
 public:
-    wxSpinButtonBase() { InitBase(); }
+    // ctor intiializes the range with the default (0..100) values
+    wxSpinButtonBase() { m_min = 0; m_max = 100; }
 
     // accessors
     virtual int GetValue() const = 0;
@@ -60,13 +61,6 @@ public:
     bool IsVertical() const { return (m_windowStyle & wxSP_VERTICAL) != 0; }
 
 protected:
-    // init the base part of the control
-    void InitBase()
-    {
-        m_min = 0;
-        m_max = 100;
-    }
-
     // the range value
     int   m_min;
     int   m_max;