summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal2.qml
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-18 03:04:13 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-18 03:04:13 (GMT)
commit9614a2775df27602b1d1bb0946feb4bb593cbf39 (patch)
treea917125de320ed2ea6a0b52bd0041edc256ee2ba /tests/auto/declarative/anchors/data/illegal2.qml
parent178d8c9cb87c5578e5175b5a405d470919644c4d (diff)
parent26bbfd3c1afd34cd10f4d111b05b13e2f052cd6a (diff)
downloadQt-9614a2775df27602b1d1bb0946feb4bb593cbf39.zip
Qt-9614a2775df27602b1d1bb0946feb4bb593cbf39.tar.gz
Qt-9614a2775df27602b1d1bb0946feb4bb593cbf39.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests/auto/declarative/anchors/data/illegal2.qml')
-rw-r--r--tests/auto/declarative/anchors/data/illegal2.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/anchors/data/illegal2.qml b/tests/auto/declarative/anchors/data/illegal2.qml
deleted file mode 100644
index 978be52..0000000
--- a/tests/auto/declarative/anchors/data/illegal2.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- id: rect
- width: 120; height: 200; color: "white"
- Text { id: text1; text: "Hello" }
- Text {
- id: text2;
- anchors.baseline: text1.baseline;
- anchors.top: text1.top;
- text: "World"
- }
-}