Module: wine Branch: master Commit: cec1686cedf99967b4657d8d3815338461bc9979 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cec1686cedf99967b4657d8d38...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Tue Sep 14 16:41:44 2010 +0900
gdi32: Add a trace for GetClipBox.
---
dlls/gdi32/clipping.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/gdi32/clipping.c b/dlls/gdi32/clipping.c index 7be7650..8717da7 100644 --- a/dlls/gdi32/clipping.c +++ b/dlls/gdi32/clipping.c @@ -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; }