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

import QtQuick 2.0

//DO NOT CHANGE
Item {
    Timer {
        id: timer;  interval: 1; running: true; repeat: true; triggeredOnStart:  true
        onTriggered: {
            console.log("timer");
        }
    }
}