Index: reactos/win32ss/user/ntuser/mouse.c =================================================================== --- reactos/win32ss/user/ntuser/mouse.c (revision 75470) +++ reactos/win32ss/user/ntuser/mouse.c (working copy) @@ -402,7 +402,7 @@ lpEventTrack->dwFlags & TME_NONCLIENT ? WM_NCMOUSELEAVE : WM_MOUSELEAVE, 0, 0); } - TRACE("IntTrackMouseEvent spwndTrack %p pwnd %p\n", pDesk->spwndTrack, pWnd); + ERR("IntTrackMouseEvent spwndTrack %p pwnd %p\n", pDesk->spwndTrack, pWnd); return TRUE; } Index: reactos/win32ss/user/ntuser/msgqueue.c =================================================================== --- reactos/win32ss/user/ntuser/msgqueue.c (revision 75470) +++ reactos/win32ss/user/ntuser/msgqueue.c (working copy) @@ -1430,13 +1430,13 @@ msg->message != WM_MOUSEMOVE || // Mouse click changes or pDesk->htEx != hittest) // Change in current hit test states. { - TRACE("ITMM: Track Mouse Move!\n"); + ERR("ITMM: Track Mouse Move!\n"); /* Handle only the changing window track and mouse move across a border. */ if ( pDesk->spwndTrack != pwndTrack || (pDesk->htEx == HTCLIENT) ^ (hittest == HTCLIENT) ) { - TRACE("ITMM: Another Wnd %d or Across Border %d\n", + ERR("ITMM: Another Wnd %d or Across Border %d\n", pDesk->spwndTrack != pwndTrack,(pDesk->htEx == HTCLIENT) ^ (hittest == HTCLIENT)); if ( pDesk->dwDTFlags & DF_TME_LEAVE ) @@ -1451,6 +1451,7 @@ pDesk->dwDTFlags &= ~(DF_TME_LEAVE|DF_TME_HOVER); } /* Set the Track window and hit test. */ + ERR("pDesk->spwndTrack(0x%p) = pwndTrack(0x%p), head.pti=0x%x\n", pDesk->spwndTrack, pwndTrack, pwndTrack->head.pti); pDesk->spwndTrack = pwndTrack; pDesk->htEx = hittest; } @@ -1460,7 +1461,7 @@ ( msg->message != WM_MOUSEMOVE || !RECTL_bPointInRect(&pDesk->rcMouseHover, msg->pt.x, msg->pt.y)) && pDesk->dwDTFlags & DF_TME_HOVER ) { - TRACE("ITMM: Reset Hover points!\n"); + ERR("ITMM: Reset Hover points!\n"); // Restart timer for the hover period. IntSetTimer(pDesk->spwndTrack, ID_EVENT_SYSTIMER_MOUSEHOVER, pDesk->dwMouseHoverTime, SystemTimerProc, TMRF_SYSTEM); // Reset desktop mouse hover from the system default hover rectangle. Index: reactos/win32ss/user/ntuser/timer.c =================================================================== --- reactos/win32ss/user/ntuser/timer.c (revision 75470) +++ reactos/win32ss/user/ntuser/timer.c (working copy) @@ -336,7 +336,7 @@ wParam = pDesk->htEx; // Need to support all HTXYZ hits. Msg = WM_NCMOUSEHOVER; } - TRACE("Generating WM_NCMOUSEHOVER\n"); + ERR("Generating WM_NCMOUSEHOVER\n"); UserPostMessage(hwnd, Msg, wParam, MAKELPARAM(Point.x, Point.y)); pDesk->dwDTFlags &= ~DF_TME_HOVER; break; // Kill this timer.