aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/SetSourceComponent.qml
blob: 83cc358f7dd06fe2648d108cf767f971954b01cc (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

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