Commit 56b17436 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Added comment explaining why we have an ERR rather than a WARN.

parent eff75a31
......@@ -178,6 +178,13 @@ void DCE_FreeWindowDCE( WND* pWnd )
{
if( pDCE->DCXflags & DCX_DCEBUSY ) /* shared cache DCE */
{
/* FIXME: AFAICS we are doing the right thing here so
* this should be a WARN. But this is best left as an ERR
* because the 'application error' is likely to come from
* another part of Wine (i.e. it's our fault after all).
* We should change this to WARN when Wine is more stable
* (for 1.0?).
*/
ERR("[%04x] GetDC() without ReleaseDC()!\n",
pWnd->hwndSelf);
DCE_ReleaseDC( pDCE );
......
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