- Disable some debug prints that are not needed any more

svn path=/branches/GSoC_2011/ThemesSupport/; revision=53222
This commit is contained in:
Giannis Adamopoulos 2011-08-14 10:28:49 +00:00
parent d5fe671844
commit 6d66e2da43
3 changed files with 3 additions and 5 deletions

View file

@ -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,

View file

@ -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;

View file

@ -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.