tests/auto/declarative/qdeclarativebehaviors/data/startup.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt 4.7
       
     2 
       
     3 Rectangle {
       
     4     width: 400
       
     5     height: 400
       
     6 
       
     7     Rectangle {
       
     8         objectName: "innerRect"
       
     9         height: 100; width: 100; color: "green"
       
    10         property real targetX: 100
       
    11 
       
    12         x: targetX
       
    13         Behavior on x {
       
    14             NumberAnimation {}
       
    15         }
       
    16     }
       
    17 }