summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/ListView
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/ListView')
-rw-r--r--tests/auto/declarative/visual/ListView/basic1.qml2
-rw-r--r--tests/auto/declarative/visual/ListView/basic2.qml6
-rw-r--r--tests/auto/declarative/visual/ListView/basic3.qml8
-rw-r--r--tests/auto/declarative/visual/ListView/basic4.qml12
4 files changed, 14 insertions, 14 deletions
diff --git a/tests/auto/declarative/visual/ListView/basic1.qml b/tests/auto/declarative/visual/ListView/basic1.qml
index 85934dc..3c371a6 100644
--- a/tests/auto/declarative/visual/ListView/basic1.qml
+++ b/tests/auto/declarative/visual/ListView/basic1.qml
@@ -4,7 +4,7 @@ Rectangle {
color: "blue"
width: 200
height: 300
- id: Page
+ id: page
ListView {
anchors.fill: parent
delegate: Rectangle {
diff --git a/tests/auto/declarative/visual/ListView/basic2.qml b/tests/auto/declarative/visual/ListView/basic2.qml
index 4fe63ac..bdba65e 100644
--- a/tests/auto/declarative/visual/ListView/basic2.qml
+++ b/tests/auto/declarative/visual/ListView/basic2.qml
@@ -4,9 +4,9 @@ Rectangle {
color: "blue"
width: 200
height: 300
- id: Page
+ id: page
Component {
- id: Delegate
+ id: delegate
Rectangle {
color: "red"
width: 100
@@ -18,7 +18,7 @@ Rectangle {
}
ListView {
anchors.fill: parent
- delegate: Delegate
+ delegate: delegate
model: ListModel {
ListElement {
name: "January"
diff --git a/tests/auto/declarative/visual/ListView/basic3.qml b/tests/auto/declarative/visual/ListView/basic3.qml
index c0705e9..05ac358 100644
--- a/tests/auto/declarative/visual/ListView/basic3.qml
+++ b/tests/auto/declarative/visual/ListView/basic3.qml
@@ -4,9 +4,9 @@ Rectangle {
color: "blue"
width: 200
height: 300
- id: Page
- ListModel {
- id: Model
+ id: page
+ Listmodel {
+ id: model
ListElement {
name: "January"
}
@@ -16,7 +16,7 @@ Rectangle {
}
ListView {
anchors.fill: parent
- model: Model
+ model: model
delegate: Rectangle {
color: "red"
width: 100
diff --git a/tests/auto/declarative/visual/ListView/basic4.qml b/tests/auto/declarative/visual/ListView/basic4.qml
index c8e1bcc..3628bd3 100644
--- a/tests/auto/declarative/visual/ListView/basic4.qml
+++ b/tests/auto/declarative/visual/ListView/basic4.qml
@@ -4,9 +4,9 @@ Rectangle {
color: "blue"
width: 200
height: 300
- id: Page
- ListModel {
- id: Model
+ id: page
+ Listmodel {
+ id: model
ListElement {
name: "January"
}
@@ -15,7 +15,7 @@ Rectangle {
}
}
Component {
- id: Delegate
+ id: delegate
Rectangle {
color: "red"
width: 100
@@ -27,7 +27,7 @@ Rectangle {
}
ListView {
anchors.fill: parent
- model: Model
- delegate: Delegate
+ model: model
+ delegate: delegate
}
}