From 6d66e2da438a47d6fc27899aadfefdb60f37192e Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Sun, 14 Aug 2011 10:28:49 +0000 Subject: [PATCH] [win32k] - Disable some debug prints that are not needed any more svn path=/branches/GSoC_2011/ThemesSupport/; revision=53222 --- subsystems/win32/win32k/ntuser/input.c | 1 - subsystems/win32/win32k/ntuser/msgqueue.c | 4 ++-- subsystems/win32/win32k/ntuser/timer.c | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/subsystems/win32/win32k/ntuser/input.c b/subsystems/win32/win32k/ntuser/input.c index bb1f29914c6..8e751677ac5 100644 --- a/subsystems/win32/win32k/ntuser/input.c +++ b/subsystems/win32/win32k/ntuser/input.c @@ -1645,7 +1645,6 @@ IntTrackMouseEvent( IntSetTimer( pWnd, ID_EVENT_SYSTIMER_MOUSEHOVER, pDesk->dwMouseHoverTime, SystemTimerProc, TMRF_SYSTEM); // Get windows thread message points. point = pWnd->head.pti->ptLast; - DPRINT1("point: %d, %d\n", point.x, point.y); // Set desktop mouse hover from the system default hover rectangle. RECTL_vSetRect(&pDesk->rcMouseHover, point.x - gspv.iMouseHoverWidth / 2, diff --git a/subsystems/win32/win32k/ntuser/msgqueue.c b/subsystems/win32/win32k/ntuser/msgqueue.c index 28e4c0360b4..7df17f7513d 100644 --- a/subsystems/win32/win32k/ntuser/msgqueue.c +++ b/subsystems/win32/win32k/ntuser/msgqueue.c @@ -549,7 +549,7 @@ co_MsqInsertMouseMessage(MSG* Msg, DWORD flags, ULONG_PTR dwExtraInfo, BOOL Hook { MSG msgMouseLeave; - DPRINT1("co_MsqInsertMouseMessage: generating WM_MOUSELEAVE\n"); + DPRINT("co_MsqInsertMouseMessage: generating WM_MOUSELEAVE\n"); msgMouseLeave.hwnd = UserHMGetHandle(pDesk->spwndTrack); msgMouseLeave.message = WM_MOUSELEAVE; @@ -1393,7 +1393,7 @@ BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, UINT first, UINT { MSG msgMouseLeave; - DPRINT1("co_IntProcessMouseMessage: generating WM_MOUSELEAVE\n"); + DPRINT("co_IntProcessMouseMessage: generating WM_MOUSELEAVE\n"); msgMouseLeave.hwnd = UserHMGetHandle(pDesk->spwndTrack); msgMouseLeave.message = WM_MOUSELEAVE; diff --git a/subsystems/win32/win32k/ntuser/timer.c b/subsystems/win32/win32k/ntuser/timer.c index ecef00cf88f..8d01039472b 100644 --- a/subsystems/win32/win32k/ntuser/timer.c +++ b/subsystems/win32/win32k/ntuser/timer.c @@ -326,7 +326,6 @@ SystemTimerProc(HWND hwnd, pWnd == pDesk->spwndTrack ) { Point = pWnd->head.pti->MessageQueue->MouseMoveMsg.pt; - DPRINT1("point: %d, %d\n", Point.x, Point.y); if ( IntPtInRect(&pDesk->rcMouseHover, Point) ) { if (pDesk->htEx == HTCLIENT) // In a client area. @@ -347,7 +346,7 @@ SystemTimerProc(HWND hwnd, wParam = pDesk->htEx; // Need to support all HTXYZ hits. Msg = WM_NCMOUSEHOVER; } - DPRINT1("Generating WM_NCMOUSEHOVER\n"); + DPRINT("Generating WM_NCMOUSEHOVER\n"); UserPostMessage(hwnd, Msg, wParam, MAKELPARAM(Point.x, Point.y)); pDesk->dwDTFlags &= ~DF_TME_HOVER; break; // Kill this timer.