aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/enumLookup.qml
blob: 40186a1fcf39f192bb8f521740ece83f4f2c9036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma Strict
import QML
import TestTypes as TT2

QtObject {
    property Component c: Component {
        id: cc
        QtObject {}
    }
        
    property bool ready: cc.status == Component.Ready
    property int enumFromGadget2: TT2.GadgetWithEnum.CONNECTED + 1
}