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

QtObject {
    id: self
    property color c: "#aabbcc"
    property color d: "#ccbbaa"
    property color e: "#" + "112233"
    Component.onCompleted: {
        c = "#dddddd";
        self.d = "#aaaaaa";
    }
}