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