tests/auto/declarative/qdeclarativeanchors/data/loop1.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     id: rect
       
     5     width: 120; height: 200; color: "white"
       
     6     Text { id: text1; anchors.right: text2.right; text: "Hello" }
       
     7     Text { id: text2; anchors.right: text1.right; anchors.rightMargin: 10; text: "World" }
       
     8 }