equal
deleted
inserted
replaced
|
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 } |