From 3b43d6d9d539bb12a029944036485fac163c0b8c Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 2 May 2012 16:41:17 +0000 Subject: [PATCH] Fix compile, for mouse over hint git-svn-id: trunk@37139 - --- ide/sourceeditor.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ide/sourceeditor.pp b/ide/sourceeditor.pp index 0dd925dda0..38e1f90b8d 100644 --- a/ide/sourceeditor.pp +++ b/ide/sourceeditor.pp @@ -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;