From: Vadim Zeitlin Date: Sun, 1 Sep 2002 20:24:25 +0000 (+0000) Subject: another part of SetSelection() change I forgot to commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/14bc59a252f47c7d5dbcd57b9be39c3f351f62e5 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 --- diff --git a/include/wx/spinctrl.h b/include/wx/spinctrl.h index a40cc6c3c4..17b013086a 100644 --- a/include/wx/spinctrl.h +++ b/include/wx/spinctrl.h @@ -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; }