projects
/
qt:qt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed rounding errors in QtQuick1 to int conversions
[qt:qt.git]
/
tests
/
auto
/
declarative
/
qdeclarativevaluetypes
/
data
/
qtbug-33625.qml
1
import QtQuick 1.0
2
Item {
3
property string stringtest: "16777237"
4
property int stringint: stringtest
5
6
property int inttest: 16777237
7
property int intint: 0
8
9
Component.onCompleted: {
10
intint = inttest;
11
}
12
}