Commit f0b27edf authored by Jim Aston's avatar Jim Aston Committed by Alexandre Julliard

When window class has CS_CLASSDC style we should not remove the DC

when destroying the window.
parent bb558b7a
......@@ -158,20 +158,23 @@ void DCE_FreeWindowDCE( WND* pWnd )
{
if( pDCE->hwndCurrent == pWnd->hwndSelf )
{
if( pDCE == pWnd->dce ) /* owned DCE */
if( pDCE == pWnd->dce ) /* owned or Class DCE*/
{
if (pWnd->class->style & CS_OWNDC) /* owned DCE*/
{
pDCE = DCE_FreeDCE( pDCE );
pWnd->dce = NULL;
continue;
}
else
else if( pDCE->DCXflags & (DCX_INTERSECTRGN | DCX_EXCLUDERGN) ) /* Class DCE*/
{
if(!(pDCE->DCXflags & DCX_CACHE) ) /* class DCE */
{
if( pDCE->DCXflags & (DCX_INTERSECTRGN | DCX_EXCLUDERGN) )
DCE_DeleteClipRgn( pDCE );
pDCE->hwndCurrent = 0;
}
else if( pDCE->DCXflags & DCX_DCEBUSY ) /* shared cache DCE */
}
else
{
if( pDCE->DCXflags & DCX_DCEBUSY ) /* shared cache DCE */
{
ERR("[%04x] GetDC() without ReleaseDC()!\n",
pWnd->hwndSelf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment