aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlpreview/data/window1.qml
blob: 4a24041deaf6d1b6566c0f585a4af41ea0696b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2018 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
import QtQuick.Window 2.3

Window {
    visible: true

    height: 200
    width: 100

    Timer {
        interval: 1000
        running: true
        onTriggered: console.log("window1.qml");
    }
}