From 11acaf87d7a1c122d8812522d8c880f79897b23f Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 3 Apr 2003 02:27:33 +0000 Subject: [PATCH] Added SetSelection git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/controls.i | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wxPython/src/controls.i b/wxPython/src/controls.i index 54ed6ec58a..2627f37e2b 100644 --- a/wxPython/src/controls.i +++ b/wxPython/src/controls.i @@ -1134,7 +1134,9 @@ public: int GetValue(); void SetRange(int min, int max); void SetValue(int value); - +#ifndef __WXGTK__ + void SetSelection(long from, long to); +#endif };