summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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" }
}
}
}