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

Item {
    Component {
        id: factory
        Item {}
    }

    property Item keepAliveProperty;

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