]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/spinctrl.h
compilation fix after incorrectly resolved conflict
[wxWidgets.git] / include / wx / spinctrl.h
index 84e20dc8404b0cd96587da79b7b341c625c52d72..ee3dcb2c53c0cfc401c2ecd3fe1f1c76379e8ab1 100644 (file)
@@ -34,6 +34,7 @@ public:
     virtual int GetMax() const { return m_max; }
 
     // operations
+    virtual void SetValue(const wxString& value) = 0;
     virtual void SetValue(int val) = 0;
     virtual void SetRange(int minVal, int maxVal) = 0;
 
@@ -52,10 +53,12 @@ protected:
 
 #if defined(__WXMSW__) && defined(__WIN32__)
     #include "wx/msw/spinctrl.h"
+#elif defined(__WXPM__)
+    #include "wx/os2/spinctrl.h"
 #elif defined(__WXGTK__)
     #include "wx/gtk/spinctrl.h"
 #else // Win16 || !Win
-    #include "wx/generic/spinctrl.h"
+    #include "wx/generic/spinctlg.h"
 #endif // platform
 
 #endif // _WX_SPINCTRL_H_