gdi32: Add a trace for GetClipBox.

This commit is contained in:
Dmitry Timoshkov 2010-09-14 16:41:44 +09:00 committed by Alexandre Julliard
parent 7864ade5a8
commit cec1686ced
1 changed files with 1 additions and 0 deletions

View File

@ -408,6 +408,7 @@ INT WINAPI GetClipBox( HDC hdc, LPRECT rect )
}
DPtoLP( hdc, (LPPOINT)rect, 2 );
release_dc_ptr( dc );
TRACE("%p => %d %s\n", hdc, ret, wine_dbgstr_rect( rect ));
return ret;
}