mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 05:49:30 +02:00
SynEdit: 64 bit compilation
git-svn-id: trunk@24685 -
This commit is contained in:
parent
82200be362
commit
3fce5af5cc
@ -728,7 +728,7 @@ begin
|
||||
p := TopCodeFoldBlockType(DownIndex);
|
||||
if p >= CountDiffCodeFoldBlockOffset then
|
||||
p := p - PtrUInt(CountDiffCodeFoldBlockOffset);
|
||||
Result := TDiffCodeFoldBlockType(p);
|
||||
Result := TDiffCodeFoldBlockType(PtrUInt(p));
|
||||
end;
|
||||
|
||||
function TSynDiffSyn.GetFoldConfigInstance(Index: Integer): TSynCustomFoldConfig;
|
||||
|
@ -717,7 +717,7 @@ begin
|
||||
p := TopCodeFoldBlockType(DownIndex);
|
||||
if p >= CountLfmCodeFoldBlockOffset then
|
||||
p := p - PtrUInt(CountLfmCodeFoldBlockOffset);
|
||||
Result := TLfmCodeFoldBlockType(p);
|
||||
Result := TLfmCodeFoldBlockType(PtrUInt(p));
|
||||
end;
|
||||
|
||||
function TSynLFMSyn.GetFoldConfigCount: Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user