wxGTK has SetSelection now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-01-23 21:09:45 +00:00
parent b60e45d16a
commit 76e4fb5ef9

View File

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