aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/earlyIdObjectAccess.qml
blob: 22c335b1a715196e1e80f9c54b5f54d01aa183ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.0

Item {
    visible: false
    property bool success: false
    property bool loading: true

    Item {
        visible: someOtherItem.someProperty
        onVisibleChanged: {
            if (!visible) {
                success = loading
            }
        }
    }

    Item {
        id: someOtherItem
        property bool someProperty: true
    }

    Component.onCompleted: loading = false
}