summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicsflickable/data
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-23 05:48:44 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-23 05:48:44 (GMT)
commitda3a7ff361104e57b032b56c49e5cc231304a086 (patch)
tree1d12247225d259bc2bd34b8696ddc5f1c429db5c /tests/auto/declarative/qmlgraphicsflickable/data
parentb204fd2bc702e0ff3823b2b74de338c5be4ac0b3 (diff)
downloadQt-da3a7ff361104e57b032b56c49e5cc231304a086.zip
Qt-da3a7ff361104e57b032b56c49e5cc231304a086.tar.gz
Qt-da3a7ff361104e57b032b56c49e5cc231304a086.tar.bz2
Fix warning
Diffstat (limited to 'tests/auto/declarative/qmlgraphicsflickable/data')
-rw-r--r--tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml2
-rw-r--r--tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml2
-rw-r--r--tests/auto/declarative/qmlgraphicsflickable/data/flickable04.qml2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml b/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml
index cf98dd9..3e08359 100644
--- a/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml
+++ b/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml
@@ -8,7 +8,7 @@ Flickable {
id: row
Repeater {
model: 4
- Rectangle { width: 200; height: 300; color: dayColor }
+ Rectangle { width: 200; height: 300; color: "blue" }
}
}
}
diff --git a/tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml b/tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml
index 001bf2f..3ed173d 100644
--- a/tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml
+++ b/tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml
@@ -8,7 +8,7 @@ Flickable {
id: column
Repeater {
model: 4
- Rectangle { width: 200; height: 300; color: dayColor }
+ Rectangle { width: 200; height: 300; color: "blue" }
}
}
}
diff --git a/tests/auto/declarative/qmlgraphicsflickable/data/flickable04.qml b/tests/auto/declarative/qmlgraphicsflickable/data/flickable04.qml
index 5a27869..1425d85 100644
--- a/tests/auto/declarative/qmlgraphicsflickable/data/flickable04.qml
+++ b/tests/auto/declarative/qmlgraphicsflickable/data/flickable04.qml
@@ -10,7 +10,7 @@ Flickable {
id: column
Repeater {
model: 4
- Rectangle { width: 200; height: 300; color: dayColor }
+ Rectangle { width: 200; height: 300; color: "blue" }
}
}
}