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; } }