another part of SetSelection() change I forgot to commit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16921 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-09-01 20:24:25 +00:00
parent f7a75af18d
commit 14bc59a252

View 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; }