From 14bc59a252f47c7d5dbcd57b9be39c3f351f62e5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 1 Sep 2002 20:24:25 +0000 Subject: [PATCH] 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 --- include/wx/spinctrl.h | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.45.2