]> git.saurik.com Git - wxWidgets.git/commitdiff
another part of SetSelection() change I forgot to commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 1 Sep 2002 20:24:25 +0000 (20:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 1 Sep 2002 20:24:25 +0000 (20:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16921 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/spinctrl.h

index a40cc6c3c4c6c6b0a1b822b0736f76a7a4b3d3e6..17b013086a6df6e6283b8ed28c60c0488dc4c907 100644 (file)
@@ -37,6 +37,9 @@ public:
     virtual void SetValue(int val) = 0;
     virtual void SetRange(int minVal, int maxVal) = 0;
 
+    // as the wxTextCtrl method
+    virtual void SetSelection(long from, long to) = 0;
+
 protected:
     // initialize m_min/max with the default values
     void Init() { m_min = 0; m_max = 100; }