summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/aliasPropertiesAndSignals.qml
blob: 59afe58cc38d02e76b574c6a4f443c5cf3fe10e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7

QtObject {
    id: root

    property bool test: false
    property alias myalias: root.objectName
    signal go
    onGo: test = true

    Component.onCompleted: {
        root.go();
    }
}