mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-03 00:38:24 +02:00
synedit: fixed compilation under 64bit, bug #27353
git-svn-id: trunk@47512 -
This commit is contained in:
parent
67b02120c8
commit
c9d7e64a6b
@ -1992,7 +1992,7 @@ end;
|
||||
|
||||
function TSynCssSyn.GetRange: Pointer;
|
||||
begin
|
||||
Result := Pointer(PtrInt(fRange));
|
||||
Result := {%H-}Pointer(Integer(fRange));
|
||||
end;
|
||||
|
||||
function TSynCssSyn.GetToken: string;
|
||||
@ -2050,7 +2050,7 @@ end;
|
||||
|
||||
procedure TSynCssSyn.SetRange(Value: Pointer);
|
||||
begin
|
||||
FRange := TRangeStates(PtrUInt(Value));
|
||||
FRange := TRangeStates({%H-}Cardinal(Value));
|
||||
end;
|
||||
|
||||
function TSynCssSyn.GetIdentChars: TSynIdentChars;
|
||||
|
Loading…
Reference in New Issue
Block a user