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