Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickloader / data / ActiveComponent.qml
1 import QtQuick 2.0
2
3 Item {
4     id: behaviorCounter
5     property int behaviorCount: 0
6     property int canary: 0
7
8     Behavior on canary {
9         NumberAnimation { target: behaviorCounter; property: "behaviorCount"; to: (behaviorCounter.behaviorCount + 1); duration: 0 }
10     }
11 }