aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/assignSequenceTypes.6.qml
blob: 7a794eb694afbcd1615bb39ddb059bd4eec1a413 (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.1;
        boolListProperty = false;
        urlListProperty = Qt.resolvedUrl("example.html");
    }
}