cc3f1c25b9fae971ac1b159a49aefba81d80fdbb
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / variantNotify.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property int notifyCount: 0
5
6     property variant foo
7     onFooChanged: notifyCount++
8
9     Component.onCompleted: {
10         foo = 1;
11         foo = 1;
12     }
13 }