Changeset 165 for trunk/src/helpers/cctl_tooltip.c
- Timestamp:
- May 27, 2002, 8:10:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/cctl_tooltip.c
r142 r165 778 778 * 779 779 *@@added V0.9.13 (2001-06-21) [umoeller] 780 *@@changed V0.9.19 (2002-05-14) [umoeller]: fixed bad stop timer, thanks yuri 780 781 */ 781 782 … … 789 790 PLISTNODE pToolNode; 790 791 791 if (pttd->idTimerInitial) 792 { 793 // _Pmpf(("TTM_RELAYEVENT: Stopping timer: %d", pttd->idTimerInitial)); 794 WinStopTimer(pttd->hab, 795 hwndTooltip, 796 TOOLTIP_ID_TIMER_INITIAL); 797 pttd->idTimerInitial = 0; 798 } 792 // moved stop timer down V0.9.19 (2002-05-14) [umoeller] 799 793 800 794 WinQueryPointerPos(HWND_DESKTOP, &ptlPointer); … … 823 817 { 824 818 // mouse pos changed: 819 // moved stop timer here V0.9.19 (2002-05-14) [umoeller] 820 if (pttd->idTimerInitial) 821 { 822 // _Pmpf(("TTM_RELAYEVENT: Stopping timer: %d", pttd->idTimerInitial)); 823 WinStopTimer(pttd->hab, 824 hwndTooltip, 825 TOOLTIP_ID_TIMER_INITIAL); 826 pttd->idTimerInitial = 0; 827 } 828 825 829 // hide tooltip 826 830 WinPostMsg(hwndTooltip,
Note:
See TracChangeset
for help on using the changeset viewer.