aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_attachedIgnore.qml
blob: 28612a129a73903ffecddb34cb9ec0851280759d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick
import QtQuick.Controls

Item {
    id: delegate
    property bool tumbler: Tumbler.displacement // Read-only
    QtObject {
        property bool tumbler2: delegate.Tumbler.displacement
    }
    QtObject {
        Component.onCompleted: {
            delegate.Accessible.name = "Foo"
        }
    }
}