aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/customization/data/styles/override/Dial.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/customization/data/styles/override/Dial.qml')
-rw-r--r--tests/auto/customization/data/styles/override/Dial.qml12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/auto/customization/data/styles/override/Dial.qml b/tests/auto/customization/data/styles/override/Dial.qml
index 12382dc8..f843a4ca 100644
--- a/tests/auto/customization/data/styles/override/Dial.qml
+++ b/tests/auto/customization/data/styles/override/Dial.qml
@@ -49,17 +49,21 @@
****************************************************************************/
import QtQuick 2.9
-import "../incomplete" as Incomplete
+import "../simple" as Simple
-Incomplete.Dial {
+Simple.Dial {
id: control
objectName: "dial-override"
- handle: Rectangle {
+ handle: Item {
objectName: "dial-handle-override"
}
- background: Rectangle {
+ contentItem: Item {
+ objectName: "dial-contentItem-override"
+ }
+
+ background: Item {
objectName: "dial-background-override"
}
}