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:
@@ -1691,8 +1691,8 @@ wxWindow* wxFindWindowByLabel( const wxString& label,
|
||||
wxWindow* wxWindow_FromHWND(unsigned long hWnd) {
|
||||
#ifdef __WXMSW__
|
||||
wxWindow* win = new wxWindow;
|
||||
win->SetHWND(hWnd);
|
||||
win->SubclassWin(hWnd);
|
||||
win->SetHWND((WXHWND)hWnd);
|
||||
win->SubclassWin((WXHWND)hWnd);
|
||||
return win;
|
||||
#else
|
||||
wxPyRaiseNotImplemented();
|
||||
|
Reference in New Issue
Block a user