]> git.saurik.com Git - wxWidgets.git/commitdiff
removing the IsWindow() test in ~wxWindow
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 26 Feb 2000 20:35:39 +0000 (20:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 26 Feb 2000 20:35:39 +0000 (20:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 48cf53abc9e6a0402be325d763d70583ad7b200d..f0a7bba7b3dff71c09c0b89b716f48e3a4209900 100644 (file)
@@ -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");