QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickvisualdatamodel / data / datalist.qml
1 import QtQuick 2.0
2
3 ListView {
4     width: 100
5     height: 100
6     model: VisualDataModel {
7         id: visualModel
8         objectName: "visualModel"
9         model: myModel
10         delegate: Component {
11             Rectangle {
12                 height: 25
13                 width: 100
14                 Text { objectName: "display"; text: display }
15             }
16         }
17     }
18 }