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

Rectangle {
    width: 400
    height: 400

    function setLoaderSource() {
        myLoader.source = "GreenRect.qml"
    }

    Loader {
        id: myLoader
    }
}