aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml')
-rw-r--r--tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml b/tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml
new file mode 100644
index 0000000000..5920797d9b
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml
@@ -0,0 +1,12 @@
+import QtQuick
+import QtQuick.Templates as T
+import MyStyle
+
+T.ToolBar {
+ id: control
+
+ property color c: MyStyle.toolBarColor
+ background: Rectangle {
+ color: MyStyle.toolBarColor
+ }
+}