]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/spinctrl.cpp
removed some stray MSW code
[wxWidgets.git] / src / mac / spinctrl.cpp
index a083c8a3c5418bfe281aeea205269a88bee7c10e..22553d47f169477c3bcaa8f9b6565d98f620bdc8 100644 (file)
@@ -319,4 +319,15 @@ void wxSpinCtrl::SetRange(int min, int max)
     m_btn->SetRange(min, max);
 }
 
+void wxSpinCtrl::SetSelection(long from, long to)
+{
+    // if from and to are both -1, it means (in wxWindows) that all text should
+    // be selected
+    if ( (from == -1) && (to == -1) )
+    {
+        from = 0;     
+    }
+    m_text->SetSelection(from, to);
+}     
+
 #endif // wxUSE_SPINCTRL