mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-08 04:37:23 +01:00
Qt6: Proper cast of result for -Sy.
This commit is contained in:
parent
d0b70cc7d4
commit
67868afe81
@ -15716,7 +15716,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