Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P1: Critical
-
Resolution: Done
-
Affects Version/s: 4.8.4, 4.8.5
-
Fix Version/s: 4.8.6
-
Component/s: (Inactive) QtQuick (version 1)
-
Labels:None
-
Environment:embedded linux
-
Commits:1d48b9ea56e42b2cf963090078ee2162bde23a25
Description
On systems where qreal is float (like arm), the following test application gives wrong results:
import QtQuick 1.0 Rectangle { width: 800; height: 600; color: "steelblue" property int a: 16777237 property int b: 0 Component.onCompleted: b=a Text{ id: t1 x: 91 y: 9 width: 100 text: a } Text { id: t2 x: 91 y: 53 width: 100 text: b } }
Results:
t1 = 16777237
t2 = 16777236
Should be the same.