aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlbinding/data/disabledReadonly.qml
blob: 2d1715364c0cd773af88a20464f30a970647e1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Item {
    id: root

    readonly property string name: "John"

    Binding {
        target: root
        property: "name"
        value: "Doe"
        when: false
    }
}