diff options
author | Alan Alpert <[email protected]> | 2011-11-14 05:38:18 +0100 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2011-11-14 08:16:36 +0100 |
commit | 7dc37bc9b580efb5916144c00df128dd24e67faa (patch) | |
tree | ed8e70944cab4f336b2827dbf9d1ff7f5bce0b17 /doc/src/snippets/declarative/qtobject.qml | |
parent | 21de6faafef6210ffe5082f667e83d2bbc5a8772 (diff) |
Get tst_examples passing again
Shared QDeclarativeEngine sidesteps GC slowdown issue.
New approach also verifies that the root object successfully loaded,
this picks up all the cases where it did not successfully load before.
Most of these were because they weren't importing QtQuick 2.0, import
statements have been updated. One was because it does not create a
QQuickItem root, it has been manually excluded. This required adding per
file exclusions to the current directory exclusions.
Change-Id: I809f0f20acc319aef58ba2e30e672e32f640686d
Reviewed-by: Martin Jones <[email protected]>
Diffstat (limited to 'doc/src/snippets/declarative/qtobject.qml')
-rw-r--r-- | doc/src/snippets/declarative/qtobject.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/snippets/declarative/qtobject.qml b/doc/src/snippets/declarative/qtobject.qml index 1ac86533a0..dcfbdccac4 100644 --- a/doc/src/snippets/declarative/qtobject.qml +++ b/doc/src/snippets/declarative/qtobject.qml @@ -38,7 +38,7 @@ ** ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Item { QtObject { |