From: Robin Dunn Date: Fri, 23 Jan 2004 21:09:45 +0000 (+0000) Subject: wxGTK has SetSelection now X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/76e4fb5ef9340a437b8733b6faa139b1a8b59489 wxGTK has SetSelection now git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_spin.i b/wxPython/src/_spin.i index 0045d2733d..36a921eb3d 100644 --- a/wxPython/src/_spin.i +++ b/wxPython/src/_spin.i @@ -109,14 +109,7 @@ public: virtual void SetRange( int minVal, int maxVal ); virtual int GetMin() const; virtual int GetMax() const; -#ifdef __WXGTK__ - %extend { - void SetSelection(long from, long to) { - } - } -#else void SetSelection(long from, long to); -#endif };