aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlapplicationengine/testapp/immediateExit.qml
blob: 46634f3f510e12bdb4582fa024f6be93a653c3d6 (plain)
1
2
3
4
5
6
7
8
import QtQml 2.0

QtObject {
    Component.onCompleted: {
        console.log("End: " + Qt.application.arguments[1]);
        Qt.exit(0)
    }
}