summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml
blob: f600e8578cd226a5b6da712abc99ca56c0fa45e7 (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6

Item {
    function clear() {
        loader.sourceComponent = undefined
    }
    Component { id: comp; Rectangle { width: 100; height: 50 } }
    Loader { id: loader; sourceComponent: comp }
}