mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 20:19:26 +00:00
[win32k]
- Fix a nasty bug in IntTrackMouseMove that prevented us from stopping the ID_EVENT_SYSTIMER_MOUSEHOVER timer. - IntKillTimer requires a PWND as first argument but we were passing an HWND and as a result the timer was never stopped - Fixes the remaining failed tests for TrackMouseEvent (besides queue state tests) svn path=/trunk/; revision=58364
This commit is contained in:
parent
48dd686b85
commit
3a103ecbac
1 changed files with 1 additions and 1 deletions
|
@ -1352,7 +1352,7 @@ IntTrackMouseMove(PWND pwndTrack, PDESKTOP pDesk, PMSG msg, USHORT hittest)
|
|||
0, 0);
|
||||
|
||||
if ( pDesk->dwDTFlags & DF_TME_HOVER )
|
||||
IntKillTimer(UserHMGetHandle(pDesk->spwndTrack), ID_EVENT_SYSTIMER_MOUSEHOVER, TRUE);
|
||||
IntKillTimer(pDesk->spwndTrack, ID_EVENT_SYSTIMER_MOUSEHOVER, TRUE);
|
||||
|
||||
/* Clear the flags to sign a change. */
|
||||
pDesk->dwDTFlags &= ~(DF_TME_LEAVE|DF_TME_HOVER);
|
||||
|
|
Loading…
Reference in a new issue