Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickstates / data / avoidFastForward.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     id: rect
5     width: 200
6     height: 200
7
8     property int updateCount: 0
9     onColorChanged: updateCount++
10
11     property color aColor: "green"
12
13     states: State {
14         name: "a"
15         PropertyChanges { target: rect; color: aColor }
16     }
17 }