aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmltime/tests/vmemetaobject/property.qml
blob: f217585f7fc836a4c214124a452f55694efb1f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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
import QmlTime 1.0 as QmlTime

Item {

    QmlTime.Timer {
        component: Component {
            QtObject {
                property string s
                property string s2
                property string s3
                property string s4
            }
        }
    }

}