Qt5: fixed mapping of QReal type on arm processors. Patch by Lutz Mändle. Issue #32997

git-svn-id: trunk@57043 -
This commit is contained in:
zeljko 2018-01-10 22:56:59 +00:00
parent bb2b8feabf
commit 552e2b0df6
2 changed files with 2 additions and 10 deletions

View File

@ -78,11 +78,7 @@ type
QtHandle = LongWord;
{$ENDIF}
PQReal = ^QReal;
{$ifdef CPUARM}
QReal = single;
{$else}
QReal = double;
{$endif}
QReal = double;
PQRgb = ^QRgb;
QRgb = longword;

View File

@ -78,11 +78,7 @@ type
QtHandle = LongWord;
{$ENDIF}
PQReal = ^QReal;
{$ifdef CPUARM}
QReal = single;
{$else}
QReal = double;
{$endif}
QReal = double;
PQRgb = ^QRgb;
QRgb = longword;