replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -930,7 +930,7 @@ extern WXDLLIMPEXP_CORE wxWindow* wxFindWinFromHandle(HWND hwnd);
|
||||
// without STRICT WXHWND is the same as HWND anyhow
|
||||
inline wxWindow* wxFindWinFromHandle(WXHWND hWnd)
|
||||
{
|
||||
return wxFindWinFromHandle(wx_static_cast(HWND, hWnd));
|
||||
return wxFindWinFromHandle(static_cast<HWND>(hWnd));
|
||||
}
|
||||
|
||||
// find the window for HWND which is part of some wxWindow, i.e. unlike
|
||||
|
Reference in New Issue
Block a user