aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/stringArg.qml
blob: 0879e55d46cf04fa8b588d2d3f3cae3220fe5570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pragma Strict
import QtQml

QtObject {
    id: self
    property string stringArg: "a %1 thing".arg("foozly")
    property string falseArg: "a %1 thing".arg(false)
    property string trueArg: "a %1 thing".arg(true)
    property string zeroArg: "a %1 thing".arg(0)
    property string intArg: "a %1 thing".arg(11)
    property string realArg: "a %1 thing".arg(12.25)
}