From: Vadim Zeitlin Date: Sat, 26 Feb 2000 20:35:39 +0000 (+0000) Subject: removing the IsWindow() test in ~wxWindow X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/98440bc3543c1c5f02875c6427c89802c07787c4 removing the IsWindow() test in ~wxWindow git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 48cf53abc9..f0a7bba7b3 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -274,7 +274,8 @@ wxWindow::~wxWindow() if ( m_hWnd ) { - if (::IsWindow(GetHwnd())) + // VZ: test temp removed to understand what really happens here + //if (::IsWindow(GetHwnd())) { if ( !::DestroyWindow(GetHwnd()) ) wxLogLastError("DestroyWindow");