Mercurial > pidgin.yaz
changeset 5336:5480a73b2696
[gaim-migrate @ 5712]
Fix for Gaim's IdleTracker breaking the Windows hooks chain. Thanks
to Jason Brisch of blueboxshell.org
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Thu, 08 May 2003 23:18:40 +0000 |
parents | 556f8bb51e60 |
children | 1c71d1337b1c |
files | src/win32/IdleTracker/idletrack.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/win32/IdleTracker/idletrack.c Thu May 08 16:02:33 2003 +0000 +++ b/src/win32/IdleTracker/idletrack.c Thu May 08 23:18:40 2003 +0000 @@ -67,7 +67,7 @@ if (lastTime) *lastTime = GetTickCount(); - return 0; + return CallNextHookEx(keyHook, code, wParam, lParam); } @@ -89,7 +89,7 @@ if (lastTime) *lastTime = GetTickCount(); - return 0; + return CallNextHookEx(mouseHook, code, wParam, lParam); }