summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml
blob: 8d032f02c7f6b9f924a2066b169c7e94c8f37720 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.6
Rectangle {
    width: 400
    height: 400
    Rectangle {
        id: rect
        objectName: "MyRect"
        width: 100; height: 100; color: "green"
        x: Behavior { NumberAnimation { duration: 500; } }
    }
}