Qt5: Fixed compiling qt56.pas with -Sy option.

This commit is contained in:
Željan Rikalo 2023-08-26 10:35:06 +02:00
parent 6c177bc5b2
commit 12e313d41b

View File

@ -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;