tests/auto/declarative/qdeclarativeanimations/data/valuesource.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     Rectangle {
       
     7         id: rect
       
     8         objectName: "MyRect"
       
     9         color: "red"
       
    10         width: 50; height: 50
       
    11         x: 100; y: 100
       
    12         NumberAnimation on x { id: anim; objectName: "MyAnim"; to: 200 }
       
    13     }
       
    14 }