Made an eopty stub of SetSelection for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-04-04 17:34:41 +00:00
parent 09e6ff8c42
commit d38b3b9620

View File

@@ -1134,7 +1134,12 @@ public:
int GetValue();
void SetRange(int min, int max);
void SetValue(int value);
#ifndef __WXGTK__
#ifdef __WXGTK__
%addmethods {
void SetSelection(long from, long to) {
}
}
#else
void SetSelection(long from, long to);
#endif
};