summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/variantNotify.qml
blob: e7aaf16f0eedc912454066eb5382c94b86087616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7

QtObject {
    property int notifyCount: 0

    property variant foo
    onFooChanged: notifyCount++

    Component.onCompleted: {
        foo = 1;
        foo = 1;
    }
}