From: Julian Smart Date: Tue, 10 Apr 2001 13:42:18 +0000 (+0000) Subject: Removed spurious wxCHECK which forgot about the possibility of ~wxScreenDC... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/db400410d8117199728e15cab01824681d517e3e Removed spurious wxCHECK which forgot about the possibility of ~wxScreenDC... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/dc.cpp b/src/msw/dc.cpp index 0598c60773..1863a0d1da 100644 --- a/src/msw/dc.cpp +++ b/src/msw/dc.cpp @@ -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()); + } } } }