aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/stringToUrl.qml
blob: 1172c420326a016b4ff67f2d1414b7df8fc0bb8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.12

QtObject {
    readonly property FontLoader iconLoader: FontLoader {
        source: "qrc:/qt/qml/path/to/font.ttf"
    }
    property string myUrl: "qrc:/qt/qml/path/to/font2.ttf"
    readonly property FontLoader iconLoader2: FontLoader {
        source: myUrl
    }
}