Fix compile, for mouse over hint

git-svn-id: trunk@37139 -
This commit is contained in:
martin 2012-05-02 16:41:17 +00:00
parent 7eb5fa6c4a
commit 3b43d6d9d5

View File

@ -7779,8 +7779,8 @@ begin
if PtInRect(FHintWindow.BoundsRect, Mouse.CursorPos) then begin // ignore any action over Hint
if FHintWindow.Active then
exit;
if (Msg = WM_MOUSEMOVE) {$IFDEF WINDOWS} or (Msg = WM_NCMOUSEMOVE){$ENDIF} or
((Msg >= WM_MOUSEFIRST) and (Msg <= WM_MOUSELAST))
if (Msg = WM_MOUSEMOVE) {$IFDEF WINDOWS} or (Msg = WM_NCMOUSEMOVE)or
((Msg >= WM_MOUSEFIRST) and (Msg <= WM_MOUSELAST)) {$ENDIF}
then
exit;
end;