summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/loop1.qml
blob: ef6b63dd8252b3f2c3e78f023525021531e2ffa4 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

Rectangle {
    id: rect
    width: 120; height: 200; color: "white"
    Text { id: Text1; anchors.right: Text2.right; text: "Hello" }
    Text { id: Text2; anchors.right: Text1.right; anchors.rightMargin: 10; text: "World" }
}