diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-10 04:42:47 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-03-10 04:42:47 (GMT) |
commit | a5666c0f220e42464758890e29e209c26f9a9fa1 (patch) | |
tree | c499f49ae478655242c60b464040e4f2d75e876b /tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml | |
parent | 4e8b2039ecbbda87b5c23cc0a574b7accfc2ad33 (diff) | |
parent | b5be801a5277cf63185f36d2ca1557b941340ce3 (diff) | |
download | Qt-a5666c0f220e42464758890e29e209c26f9a9fa1.zip Qt-a5666c0f220e42464758890e29e209c26f9a9fa1.tar.gz Qt-a5666c0f220e42464758890e29e209c26f9a9fa1.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (21 commits)
Doc
Link with the correct library for TCommDbConnPref
Remove unused struct
update Browser.qml to run again
Update Autotests
Probably fix compile on windows
Fix typo in docs
Probably fix compile
Fix qdeclarativevaluetype::font() autotest
Initialize member variable in QDeclarativeGridViewAttached
Handle itemsInserted/Removed/Moved() correctly for repeater.
Add QML support for methods returning QList<QObject *>
Compile
Update configure.exe to include declarative module by default
Make QDeclarativeItem NOTIFY signals canonical
Integrate QML's object ownership with the JS collector
Remove unused data member.
Fix warning.
Fix warnings and change geometry-related functions to use reals.
When flicking with snap, bias towards moving at least one item.
...
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml new file mode 100644 index 0000000..72edf6e --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml @@ -0,0 +1,5 @@ +import Qt 4.6 + +QtObject { + Component.onCompleted: { var a = getObject(); a = null; } +} |