diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-11-17 01:02:25 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-11-17 01:02:25 (GMT) |
commit | ae0cdb4625561e0faf7c1166c5341798d8e5e2ea (patch) | |
tree | 5851fe4144e489ba5210ec7f706349520dfec1ce /tests | |
parent | d2fc7cdc3eb436d4ed8149ec25f692864e518105 (diff) | |
parent | 89464ba786864f8a905c0d9939033970ac10f978 (diff) | |
download | Qt-ae0cdb4625561e0faf7c1166c5341798d8e5e2ea.zip Qt-ae0cdb4625561e0faf7c1166c5341798d8e5e2ea.tar.gz Qt-ae0cdb4625561e0faf7c1166c5341798d8e5e2ea.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/states/data/propertyErrors.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/declarative/states/data/propertyErrors.qml b/tests/auto/declarative/states/data/propertyErrors.qml new file mode 100644 index 0000000..270462e --- /dev/null +++ b/tests/auto/declarative/states/data/propertyErrors.qml @@ -0,0 +1,10 @@ +import Qt 4.6 +Rectangle { + id: MyRectangle + width: 100; height: 100 + color: "red" + states: State { + name: "blue" + PropertyChanges { target: MyRectangle; colr: "blue"; wantsFocus: true } + } +} |