Dmitry Timoshkov : user: Add a trace to EndDeferWindowPos.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jul 24 13:15:09 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: e882cdf55cc004b5ffb7b85d912b4733da761ba6
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=e882cdf55cc004b5ffb7b85d912b4733da761ba6

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Mon Jul 24 21:13:36 2006 +0900

user: Add a trace to EndDeferWindowPos.

---

 dlls/user/winpos.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/user/winpos.c b/dlls/user/winpos.c
index a3b7648..6bc9056 100644
--- a/dlls/user/winpos.c
+++ b/dlls/user/winpos.c
@@ -1331,6 +1331,10 @@ BOOL WINAPI EndDeferWindowPos( HDWP hdwp
     if (!pDWP) return FALSE;
     for (i = 0, winpos = pDWP->winPos; i < pDWP->actualCount; i++, winpos++)
     {
+        TRACE("hwnd %p, after %p, %d,%d (%dx%d), flags %08x\n",
+               winpos->hwnd, winpos->hwndInsertAfter, winpos->x, winpos->y,
+               winpos->cx, winpos->cy, winpos->flags);
+
         if (!(res = USER_Driver->pSetWindowPos( winpos ))) break;
     }
     USER_HEAP_FREE( hdwp );




More information about the wine-cvs mailing list