summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/illegal3.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-11-17 05:13:39 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-11-17 05:13:39 (GMT)
commitf2cb8e0ec8b34044b41e3a2389edbd45f1828b8f (patch)
tree84e317bf88a94af2998a3baf369133f823f2f270 /tests/auto/declarative/anchors/data/illegal3.qml
parent6f3b799d5c1fff8ffe77c874f4c25461464b6958 (diff)
parente48194ee16a35eab44b4663b3d38f72def5d8803 (diff)
downloadQt-f2cb8e0ec8b34044b41e3a2389edbd45f1828b8f.zip
Qt-f2cb8e0ec8b34044b41e3a2389edbd45f1828b8f.tar.gz
Qt-f2cb8e0ec8b34044b41e3a2389edbd45f1828b8f.tar.bz2
Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests/auto/declarative/anchors/data/illegal3.qml')
-rw-r--r--tests/auto/declarative/anchors/data/illegal3.qml12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/auto/declarative/anchors/data/illegal3.qml b/tests/auto/declarative/anchors/data/illegal3.qml
deleted file mode 100644
index 065ceb5..0000000
--- a/tests/auto/declarative/anchors/data/illegal3.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- id: rect
- width: 120; height: 200; color: "white"
- Item {
- Rectangle { id: theRect; width: 100; height: 100 }
- }
- Rectangle {
- anchors.left: theRect.left
- }
-}