aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/universal/data/tst_universal.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-04-16 18:26:44 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-04-16 19:11:10 +0000
commite39e6253d1f7f94e421e8e665d2e9c18f64137a6 (patch)
tree01ea4fae52220769f51e173139b3c22b6ae71a05 /tests/auto/universal/data/tst_universal.qml
parent205e3c1052abb672acf28ae332b489ed4f6599c2 (diff)
Rename QQuickUniversalStyle::Accent to Color
The same enum will be supported by the upcoming foreground and background attributes and is no longer accent -specific. Change-Id: Id579a1f08bdee1d92fb94a22e68c0fab0dc4e7a5 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'tests/auto/universal/data/tst_universal.qml')
-rw-r--r--tests/auto/universal/data/tst_universal.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/universal/data/tst_universal.qml b/tests/auto/universal/data/tst_universal.qml
index 27ffae9e..d54a2fff 100644
--- a/tests/auto/universal/data/tst_universal.qml
+++ b/tests/auto/universal/data/tst_universal.qml
@@ -306,11 +306,11 @@ TestCase {
var control = button.createObject(testCase)
verify(control)
- // Universal.Accent - enum
+ // Universal.Color - enum
control.Universal.accent = Universal.Red
compare(control.Universal.accent, "#e51400")
- // Universal.Accent - string
+ // Universal.Color - string
control.Universal.accent = "Emerald"
compare(control.Universal.accent, "#008a00")