diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-11-16 23:42:38 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-11-16 23:43:05 (GMT) |
commit | 89464ba786864f8a905c0d9939033970ac10f978 (patch) | |
tree | 5b2914471a3301510e102ec7e44391a17eeb6d08 /tests/auto | |
parent | b3ee5b597f93ab525320d725c74fa0b8b21f4c3e (diff) | |
download | Qt-89464ba786864f8a905c0d9939033970ac10f978.zip Qt-89464ba786864f8a905c0d9939033970ac10f978.tar.gz Qt-89464ba786864f8a905c0d9939033970ac10f978.tar.bz2 |
Add missing file.
Diffstat (limited to 'tests/auto')
-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 } + } +} |