aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/transitionAssignmentBug.qml
blob: 99b9ac57d4fcbc2d3caa49add3f1260b7b3bcd6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0

Rectangle {
    width: 400
    height: 400

    property bool nullObject
    Component.onCompleted: nullObject = transitions.length > 0 && transitions[0] === null

    property list<Transition> myTransitions: [Transition {}, Transition {}]
    transitions: myTransitions
}