Trace rectangles returned by GetClientRect and GetWindowRect.

diff --git a/windows/winpos.c b/windows/winpos.c
index cb576d7..da7078b 100644
--- a/windows/winpos.c
+++ b/windows/winpos.c
@@ -211,6 +211,8 @@
     if (wndPtr->parent)
 	MapWindowPoints( wndPtr->parent->hwndSelf, 0, (POINT *)rect, 2 );
     WIN_ReleaseWndPtr(wndPtr);
+    TRACE("hwnd %04x (%d,%d)-(%d,%d)\n",
+	  hwnd, rect->left, rect->top, rect->right, rect->bottom);
     return TRUE;
 }
 
@@ -317,6 +319,8 @@
     rect->bottom = wndPtr->rectClient.bottom - wndPtr->rectClient.top;
 
     WIN_ReleaseWndPtr(wndPtr);
+    TRACE("hwnd %04x (%d,%d)-(%d,%d)\n",
+	  hwnd, rect->left, rect->top, rect->right, rect->bottom);
     return TRUE;
 }