aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/MyStyle/ToolBar.qml
blob: 5920797d9b01e5073fe9ab27b66d468ba411029b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick
import QtQuick.Templates as T
import MyStyle

T.ToolBar {
    id: control

    property color c: MyStyle.toolBarColor
    background: Rectangle {
        color: MyStyle.toolBarColor
    }
}