]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/spinctrl.h
clear m_aTypes array in Clear() as well (patch 1165866)
[wxWidgets.git] / include / wx / msw / spinctrl.h
index e5687d075c6648e8fc49a48d20765500bb6061c4..bd13d0e305bfe43815ece60344dd505d3cd8c307 100644 (file)
@@ -18,6 +18,8 @@
 
 #include "wx/spinbutt.h"    // the base class
 
+#if wxUSE_SPINCTRL
+
 #include "wx/dynarray.h"
 
 class WXDLLEXPORT wxSpinCtrl;
@@ -94,6 +96,9 @@ protected:
     virtual void DoMoveWindow(int x, int y, int width, int height);
     virtual wxSize DoGetBestSize() const;
     virtual void DoGetSize(int *width, int *height) const;
+#if wxUSE_TOOLTIPS
+    virtual void DoSetToolTip( wxToolTip *tip );
+#endif // wxUSE_TOOLTIPS
 
     // the handler for wxSpinButton events
     void OnSpinChange(wxSpinEvent& event);
@@ -116,6 +121,8 @@ private:
     DECLARE_NO_COPY_CLASS(wxSpinCtrl)
 };
 
+#endif // wxUSE_SPINCTRL
+
 #endif // _WX_MSW_SPINCTRL_H_