aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmldebugjs/data/quitInJS.qml
blob: ab8566b77c95cbcc39afa55d71002872916d7973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0
import "quit.js" as Quit;

//DO NOT CHANGE

Item {
    Timer {
        running: true
        triggeredOnStart: true
        onTriggered: Quit.quit();
    }
}