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