diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-14 06:16:07 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-14 06:16:59 (GMT) |
commit | e52a73d8c74576e267dcc59d42247bd14131daaf (patch) | |
tree | f23bd7a9cc5d6163a9807f43237c21c7f644fe50 /tests/auto/declarative/qdeclarativeecmascript/data | |
parent | 5a8b5b892441a65319e39c1a8f305cf0b49edf17 (diff) | |
download | Qt-e52a73d8c74576e267dcc59d42247bd14131daaf.zip Qt-e52a73d8c74576e267dcc59d42247bd14131daaf.tar.gz Qt-e52a73d8c74576e267dcc59d42247bd14131daaf.tar.bz2 |
Reduce warnings at shutdown
QTBUG-9799
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml new file mode 100644 index 0000000..a52c772 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml @@ -0,0 +1,9 @@ +import Qt 4.6 + +Item { + id: root + + property int childrenCount: root.children.length + + Item {} +} |