1 import Qt 4.7
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 }