aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/simultaneous.qml
blob: cab64988634ae7b70fcba617c40d19fda69474ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0

Rectangle {
    width: 400; height: 400

    function loadComponents() {
        asyncLoader.source = "TestComponent.2.qml"
        syncLoader.source = "TestComponent.qml"
    }

    Loader {
        id: asyncLoader
        objectName: "asyncLoader"
        asynchronous: true
    }

    Loader {
        id: syncLoader
        objectName: "syncLoader"
        asynchronous: false
    }
}