mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 15:57:56 +02:00
Qt5: Fixed compiling qt56.pas with -Sy option.
This commit is contained in:
parent
6c177bc5b2
commit
12e313d41b
@ -15836,7 +15836,7 @@ end;
|
||||
// QReal Array Access from c-code
|
||||
function GetQRealArrayAddr(var PArr : TQRealArray): PPtrInt; cdecl; export;
|
||||
begin
|
||||
Result := @PArr[0];
|
||||
Result := PPtrInt(@PArr[0]);
|
||||
end;
|
||||
|
||||
function GetQRealArrayLength(var PArr: TQRealArray): Integer; cdecl; export;
|
||||
|
Loading…
Reference in New Issue
Block a user