ChangeSet ID: 21360 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/21 06:00:31
Modified files: dlls/x11drv : scroll.c
Log message: Dmitry Timoshkov dmitry@codeweavers.com Print scroll and clip rectangles on the ScrollDC entry.
Patch: http://cvs.winehq.org/patch.py?id=21360
Old revision New revision Changes Path 1.24 1.25 +3 -2 wine/dlls/x11drv/scroll.c
Index: wine/dlls/x11drv/scroll.c diff -u -p wine/dlls/x11drv/scroll.c:1.24 wine/dlls/x11drv/scroll.c:1.25 --- wine/dlls/x11drv/scroll.c:1.24 21 Nov 2005 12: 0:31 -0000 +++ wine/dlls/x11drv/scroll.c 21 Nov 2005 12: 0:31 -0000 @@ -68,8 +68,9 @@ BOOL X11DRV_ScrollDC( HDC hdc, INT dx, I HRGN DstRgn, clipRgn, visrgn; INT code = X11DRV_START_EXPOSURES;
- TRACE("dx,dy %d,%d lprcScroll %p lprcClip %p hrgnUpdate %p lprcUpdate %p\n", - dx, dy, lprcScroll, lprcClip, hrgnUpdate, lprcUpdate); + TRACE("dx,dy %d,%d rcScroll %s rcClip %s hrgnUpdate %p lprcUpdate %p\n", + dx, dy, wine_dbgstr_rect(lprcScroll), wine_dbgstr_rect(lprcClip), + hrgnUpdate, lprcUpdate); /* enable X-exposure events */ if (hrgnUpdate || lprcUpdate) ExtEscape( hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, 0, NULL );