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

QtObject {
    id: self
    property url c: "http://aabbcc.com"
    property url d: "http://ccbbaa.com"
    property url e: "http:" + "//a112233.de"
    Component.onCompleted: {
        c = "http://dddddd.com";
        self.d = "http://aaaaaa.com";
    }
}