Fix compilation errors due to recent typedef changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-02-26 21:12:16 +00:00
parent 56ca5a419b
commit a0c956e8e6
4 changed files with 13 additions and 7 deletions

View File

@@ -132,9 +132,11 @@ public:
long , GetHandle(),
"Get the MS Windows handle for the cursor");
DocDeclStr(
void , SetHandle(long handle),
"Set the MS WIndows handle for the cursor");
%extend {
DocStr(SetHandle,
"Set the MS Windows handle to use for the cursor");
void SetHandle(long handle) { self->SetHandle((WXHANDLE)handle); }
}
#endif