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

MySequenceConversionObject {
    Component.onCompleted: {
        intListProperty = 1;
        qrealListProperty = 1.1;
        boolListProperty = false;
        urlListProperty = "http://www.example1.com";
        stringListProperty = "one";
        qstringListProperty = "two";
    }
}