aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-09-07 11:37:19 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-07 13:57:13 +0200
commit5b47966f5c7910e29f456d9a809f120a99c10ee4 (patch)
treeee2d046b17df0627451864223d63755438fbb7f6 /tools
parent7cc5fec6978c47cb60fce3358fdaaa42671cdcff (diff)
qmlplugindump: Fix dumping of types
Dumping broke with commit 70a2c049. Change-Id: Ifbae3dbc3e2d255c1e7f8848c579c04d0bf4b48e Reviewed-by: Christian Kamm <christian.d.kamm@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmlplugindump/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmlplugindump/main.cpp b/tools/qmlplugindump/main.cpp
index b2e503c21d..762b7dd025 100644
--- a/tools/qmlplugindump/main.cpp
+++ b/tools/qmlplugindump/main.cpp
@@ -254,7 +254,7 @@ QSet<const QMetaObject *> collectReachableMetaObjects(QQmlEngine *engine, const
continue; // we don't handle QJSValue singleton types.
}
} else {
- ty->create();
+ object = ty->create();
}
inObjectInstantiation.clear();