aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeincubator/data/recursiveClear.1.qml
blob: 748a3f0cbf5646086e6db8e87a3090a5dc6e4f4a (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

Rectangle {
    objectName: "switchMe"
    signal switchMe
    width: 100; height: 100
    color: "green"
    Component.onCompleted: switchMe()
}