12 lines
346 B
QML
12 lines
346 B
QML
import QtQml 2.0
|
|
|
|
QtObject {
|
|
id: root
|
|
property Timer t: Timer { interval: 1; running: true; onTriggered: Qt.exit(0); }
|
|
property Connections c: Connections {
|
|
target: Qt.application
|
|
function onAboutToQuit() { console.log("End"); }
|
|
}
|
|
Component.onCompleted: console.log("Start: " + Qt.application.arguments[1]);
|
|
}
|