]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/spinctrl.h
use UnsetToolTip() instead of SetToolTip(NULL) to fix wxX11 build broken on Buildbot...
[wxWidgets.git] / interface / wx / spinctrl.h
index 06d29a3647992f729b4ea4f26a676e2178ea4115..ce25c046a89e349e1cf38bf406f539cf53b2f526 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxSpinCtrl
-    @wxheader{spinctrl.h}
 
     wxSpinCtrl combines wxTextCtrl and
     wxSpinButton in one control.
@@ -24,7 +23,7 @@
     @category{ctrl}
     <!-- @appearance{spinctrl.png} -->
 
-    @see wxSpinButton, wxControl
+    @see wxSpinButton, wxSpinCtrlDouble, wxControl
 */
 class wxSpinCtrl : public wxControl
 {
@@ -68,7 +67,7 @@ public:
                const wxSize& size = wxDefaultSize,
                long style = wxSP_ARROW_KEYS,
                int min = 0, int max = 100,
-               int initial = 0);
+               int initial = 0, const wxString& name = _T("wxSpinCtrl"));
 
     /**
         Creation function called by the spin control constructor.
@@ -80,7 +79,7 @@ public:
                 const wxSize& size = wxDefaultSize,
                 long style = wxSP_ARROW_KEYS,
                 int min = 0, int max = 100,
-                int initial = 0);
+                int initial = 0, const wxString& name = _T("wxSpinCtrl"));
 
     /**
         Gets maximal allowable value.