]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed spurious wxCHECK which forgot about the possibility of ~wxScreenDC...
authorJulian Smart <julian@anthemion.co.uk>
Tue, 10 Apr 2001 13:42:18 +0000 (13:42 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 10 Apr 2001 13:42:18 +0000 (13:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/dc.cpp

index 0598c60773db239a58ebed2e1953955853413ac5..1863a0d1da6daf2dd4d0a87a6112768c110c0b1d 100644 (file)
@@ -200,10 +200,15 @@ wxDC::~wxDC()
         }
         else // we don't own our HDC
         {
-            // this is not supposed to happen as we can't free the HDC then
-            wxCHECK_RET( m_canvas, _T("no canvas in not owning ~wxDC?") );
-
-            ::ReleaseDC(GetHwndOf(m_canvas), GetHdc());
+            if (m_canvas)
+            {
+                ::ReleaseDC(GetHwndOf(m_canvas), GetHdc());
+            }
+            else
+            {
+                // Must have been a wxScreenDC
+                ::ReleaseDC((HWND) NULL, GetHdc());
+            }
         }
     }
 }