aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/assignSequenceTypes.6.qml
blob: bc72b78af7497857ebfa37c150787abd2d99e39f (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0
import Qt.test 1.0

MySequenceConversionObject {
    Component.onCompleted: {
        intListProperty = 1;
        qrealListProperty = 1;
        boolListProperty = false;
        urlListProperty = Qt.resolvedUrl("example.html");
    }
}