]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/spinctrl.cpp
submenu preparation in two methods encapsulated
[wxWidgets.git] / src / os2 / spinctrl.cpp
index 2fa04e704975bcbb73591d6ac5d9f1d592d9b038..d526cfa43f47d5f62ef667e6eb06866319cc15c6 100644 (file)
@@ -488,4 +488,20 @@ bool wxSpinCtrl::Show(
     return TRUE;
 } // end of wxSpinCtrl::Show
 
+void wxSpinCtrl::SetSelection (
+  long                              lFrom
+, long                              lTo
+)
+{
+    //
+    // If from and to are both -1, it means (in wxWindows) that all text should
+    // be selected - translate into Windows convention
+    //
+    if ((lFrom == -1) && (lTo == -1))
+    {
+        lFrom = 0;
+    }
+    ::WinSendMsg(m_hWnd, EM_SETSEL, MPFROM2SHORT((USHORT)lFrom, (USHORT)lTo), (MPARAM)0);
+} // end of wxSpinCtrl::SetSelection
+
 #endif //wxUSE_SPINBTN