aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/debugger/qv8profilerservice/data/exit.qml
blob: 604265354cdc397e7cc84145b1bddbc81a30b03f (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Item {
    Timer {
        running: true
        interval: 1
        onTriggered: {
            Qt.quit();
        }
    }
}