Initial import from the monolithic Qt.
[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 }