mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-30 16:02:51 +02:00
IDE: fixed range check
git-svn-id: trunk@45274 -
This commit is contained in:
parent
4e49bc99a1
commit
c20505c5d5
@ -441,7 +441,7 @@ begin
|
||||
if Result <> 0 then exit;
|
||||
Result:=Priority-OtherMark.Priority;
|
||||
if Result <> 0 then exit;
|
||||
Result := PtrInt(Self) - PtrInt(OtherMark);
|
||||
Result := ComparePointers(Self,OtherMark);
|
||||
end;
|
||||
|
||||
function TSourceMark.CompareEditorAndLine(ASrcEditID: TObject;
|
||||
|
Loading…
Reference in New Issue
Block a user