Rename Qt Quick-specific classes to QQuick*
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquicklistview / data / resizeview.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     id: root
5
6     property real initialHeight
7
8     ListView {
9         id: list
10         objectName: "list"
11         width: 240
12         height: initialHeight
13         model: testModel
14         delegate: Rectangle {
15             objectName: "wrapper"
16             width: 240
17             height: 20
18             border.width: 1
19         }
20     }
21 }
22