12a76d7e7d21721ee280d40cd2ecb7b725ecf2c3
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / sequenceConversion.read.error.qml
1 import QtQuick 2.0
2 import Qt.test 1.0
3
4 Item {
5     id: root
6     objectName: "root"
7
8     MySequenceConversionObject {
9         id: msco
10         objectName: "msco"
11     }
12
13     property int pointListLength: 0
14     property variant pointList
15
16     function performTest() {
17         // we have NOT registered QList<QPoint> as a type
18         pointListLength = msco.pointListProperty.length;
19         pointList = msco.pointListProperty;
20     }
21 }