# HG changeset patch # User Herman Bloggs # Date 1052435920 0 # Node ID 5480a73b269678c0af380e2901ab23adabd0e48a # Parent 556f8bb51e60f0b8058ba16a597d34e45c3ec5fe [gaim-migrate @ 5712] Fix for Gaim's IdleTracker breaking the Windows hooks chain. Thanks to Jason Brisch of blueboxshell.org committer: Tailor Script diff -r 556f8bb51e60 -r 5480a73b2696 src/win32/IdleTracker/idletrack.c --- 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); }