From 552e2b0df6eaaaea8feb275087f14384f5bd4c07 Mon Sep 17 00:00:00 2001 From: zeljko Date: Wed, 10 Jan 2018 22:56:59 +0000 Subject: [PATCH] =?UTF-8?q?Qt5:=20fixed=20mapping=20of=20QReal=20type=20on?= =?UTF-8?q?=20arm=20processors.=20Patch=20by=20Lutz=20M=C3=A4ndle.=20Issue?= =?UTF-8?q?=20#32997?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: trunk@57043 - --- lcl/interfaces/qt5/cbindings/qt5.pas | 6 +----- lcl/interfaces/qt5/qt56.pas | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/lcl/interfaces/qt5/cbindings/qt5.pas b/lcl/interfaces/qt5/cbindings/qt5.pas index f4d86ad0fd..f7a35f5a08 100644 --- a/lcl/interfaces/qt5/cbindings/qt5.pas +++ b/lcl/interfaces/qt5/cbindings/qt5.pas @@ -78,11 +78,7 @@ type QtHandle = LongWord; {$ENDIF} PQReal = ^QReal; - {$ifdef CPUARM} - QReal = single; - {$else} - QReal = double; - {$endif} + QReal = double; PQRgb = ^QRgb; QRgb = longword; diff --git a/lcl/interfaces/qt5/qt56.pas b/lcl/interfaces/qt5/qt56.pas index 6a831ee774..d6259c363a 100644 --- a/lcl/interfaces/qt5/qt56.pas +++ b/lcl/interfaces/qt5/qt56.pas @@ -78,11 +78,7 @@ type QtHandle = LongWord; {$ENDIF} PQReal = ^QReal; - {$ifdef CPUARM} - QReal = single; - {$else} - QReal = double; - {$endif} + QReal = double; PQRgb = ^QRgb; QRgb = longword;