summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-03-10 04:42:47 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-03-10 04:42:47 (GMT)
commita5666c0f220e42464758890e29e209c26f9a9fa1 (patch)
treec499f49ae478655242c60b464040e4f2d75e876b /tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml
parent4e8b2039ecbbda87b5c23cc0a574b7accfc2ad33 (diff)
parentb5be801a5277cf63185f36d2ca1557b941340ce3 (diff)
downloadQt-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.qml5
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; }
+}