diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-04-06 23:54:22 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-04-06 23:55:52 (GMT) |
commit | 71a328397720af7229fd6ee48acaa19f7339a8de (patch) | |
tree | ef2e6b2f14d871b7655ba2e8fb99ba0a9486beaa /tests/auto/declarative/qdeclarativestates/data | |
parent | 3a632cb5f1c1da5c2e72ce167e35a42778867829 (diff) | |
download | Qt-71a328397720af7229fd6ee48acaa19f7339a8de.zip Qt-71a328397720af7229fd6ee48acaa19f7339a8de.tar.gz Qt-71a328397720af7229fd6ee48acaa19f7339a8de.tar.bz2 |
Don't crash if a target isn't specified for AnchorChanges.
Diffstat (limited to 'tests/auto/declarative/qdeclarativestates/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml new file mode 100644 index 0000000..861ef8f --- /dev/null +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml @@ -0,0 +1,14 @@ +import Qt 4.7 + +Rectangle { + id: container + width: 400 + height: 400 + + states: State { + name: "reanchored" + AnchorChanges { + anchors.top: container.top + } + } +} |