summaryrefslogtreecommitdiff
path: root/tests/manual/testbench/main.qml
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-02-22 11:23:24 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-22 13:38:25 +0100
commit59b12b5240f94c4822cdf4f1e4cb05bc0ede76e9 (patch)
tree4e350c46dcd4dabbb5e74e35498c620c42c84d06 /tests/manual/testbench/main.qml
parenta0714a669030d13f592e20f2a9ef145132bf00e6 (diff)
downloadqtquickcontrols-59b12b5240f94c4822cdf4f1e4cb05bc0ede76e9.tar.gz
Rename ScrollArea to ScrollView
We want to introduce View as a common name for items that are not simple controlss but views controlling other items Change-Id: I13ffc096742ec13023c58b4744ad53084e11cc67 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'tests/manual/testbench/main.qml')
-rw-r--r--tests/manual/testbench/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index c0f64b76..78248d7f 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -367,8 +367,8 @@ ApplicationWindow {
id: sidebar
color : syspal.window
width: 300
- ScrollArea {
- id: scrollArea
+ ScrollView {
+ id: scrollView
anchors.fill: parent
flickableItem.flickableDirection: Flickable.VerticalFlick
Column {
@@ -376,7 +376,7 @@ ApplicationWindow {
anchors.left: parent ? parent.left : undefined
anchors.top: parent ? parent.top : undefined
anchors.margins: 10
- width: scrollArea.viewport.width - 20
+ width: scrollView.viewport.width - 20
spacing: 8
Repeater {
model: ["Boolean", "String","Int", "Real", "ReadOnly", "Enum"]