diff options
Diffstat (limited to 'xserver/hw/xwin/winwin32rootlesswndproc.c')
-rw-r--r-- | xserver/hw/xwin/winwin32rootlesswndproc.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/xserver/hw/xwin/winwin32rootlesswndproc.c b/xserver/hw/xwin/winwin32rootlesswndproc.c index f65811c9a..79d959161 100644 --- a/xserver/hw/xwin/winwin32rootlesswndproc.c +++ b/xserver/hw/xwin/winwin32rootlesswndproc.c @@ -858,8 +858,7 @@ winMWExtWMWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) case WM_MOVE: #if CYGMULTIWINDOW_DEBUG - winDebug("winMWExtWMWindowProc - WM_MOVE - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_MOVE\n"); #endif if (g_fNoConfigureWindow) break; @@ -902,8 +901,7 @@ winMWExtWMWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) case WM_SHOWWINDOW: #if CYGMULTIWINDOW_DEBUG || TRUE - winDebug("winMWExtWMWindowProc - WM_SHOWWINDOW - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_SHOWWINDOW\n"); #endif /* Bail out if the window is being hidden */ if (!wParam) @@ -1155,8 +1153,7 @@ winMWExtWMWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) /* see dix/window.c */ /* FIXME: Maximize/Restore? */ #if CYGMULTIWINDOW_DEBUG - winDebug("winMWExtWMWindowProc - WM_SIZE - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_SIZE\n"); #endif #if CYGMULTIWINDOW_DEBUG winDebug("\t(%d, %d) %d\n", (short) LOWORD(lParam), @@ -1224,8 +1221,7 @@ winMWExtWMWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) case WM_ACTIVATEAPP: #if CYGMULTIWINDOW_DEBUG - winDebug("winMWExtWMWindowProc - WM_ACTIVATEAPP - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_ACTIVATEAPP\n"); #endif if (wParam) { if (winIsInternalWMRunning(pScreenInfo)) { @@ -1257,16 +1253,14 @@ winMWExtWMWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) case WM_ENTERSIZEMOVE: #if CYGMULTIWINDOW_DEBUG - winDebug("winMWExtWMWindowProc - WM_ENTERSIZEMOVE - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_ENTERSIZEMOVE\n"); #endif pRLWinPriv->fMovingOrSizing = TRUE; break; case WM_EXITSIZEMOVE: #if CYGMULTIWINDOW_DEBUG - winDebug("winMWExtWMWindowProc - WM_EXITSIZEMOVE - %d ms\n", - (unsigned int) GetTickCount()); + winDebug("winMWExtWMWindowProc - WM_EXITSIZEMOVE\n"); #endif pRLWinPriv->fMovingOrSizing = FALSE; |