aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/findUsages/idUsages/idUsages.qml
blob: 14506b22023bbc0395c198a2ffc17a98023bdd0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick

Item {
    id: rootId
    Rectangle {
        function f() {
            if (widthChanged())
                rootId.widthChanged();
            return rootId.x
        }
    }

    function t() {
        rootId.widthChanged();
    }
}