Module: wine Branch: master Commit: 92a67d4259404e98a1971ac75076e34905fdc166 URL: http://source.winehq.org/git/wine.git/?a=commit;h=92a67d4259404e98a1971ac750...
Author: Ken Thomases ken@codeweavers.com Date: Wed Jun 19 19:08:48 2013 -0500
winemac: Don't complain that WM_MACDRV_ACTIVATE_ON_FOLLOWING_FOCUS is unrecognized.
---
dlls/winemac.drv/window.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winemac.drv/window.c b/dlls/winemac.drv/window.c index 5328489..3c0041b 100644 --- a/dlls/winemac.drv/window.c +++ b/dlls/winemac.drv/window.c @@ -1239,7 +1239,7 @@ LRESULT CDECL macdrv_WindowMessage(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) activate_on_focus_time = GetTickCount(); if (!activate_on_focus_time) activate_on_focus_time = 1; TRACE("WM_MACDRV_ACTIVATE_ON_FOLLOWING_FOCUS time %u\n", activate_on_focus_time); - break; + return 0; }
FIXME("unrecognized window msg %x hwnd %p wp %lx lp %lx\n", msg, hwnd, wp, lp);