tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt.test 1.0
       
     2 
       
     3 MyQmlObject {
       
     4     property alias c1: myConstants.c1
       
     5     property alias c2: myConstants.c2
       
     6     property int c3: 0
       
     7 
       
     8     objectProperty: ConstantsOverrideBindings { 
       
     9         id: myConstants 
       
    10         c2: c3
       
    11     }
       
    12 
       
    13 }
       
    14