aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/variantNotify.qml
blob: 169b245450df72518176efcfa2c32d80cb949295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

QtObject {
    property int notifyCount: 0

    property variant foo
    onFooChanged: notifyCount++

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