summaryrefslogtreecommitdiffstats
path: root/examples/demos/mediaplayer/MediaPlayer/Images.qml
blob: 69c21550b09ef7cfa6a395a9c909ce0d15fd7d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

pragma Singleton
import QtQml
import Config

QtObject {
    function iconSource(fileName, addSuffix = true) {
        return Qt.resolvedUrl("icons/" + Config.iconName(fileName, addSuffix))
    }
}