aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem/data/visualParentOwnershipWindow.qml
blob: df46486d6b59edebaa30aeff75aa9edf72217e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Window {
    Component {
        id: factory
        Item {}
    }

    property Item keepAliveProperty;

    function createItemWithoutParent() {
        return factory.createObject(/*parent*/ null);
    }
}