From 5b47966f5c7910e29f456d9a809f120a99c10ee4 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 7 Sep 2012 11:37:19 +0200 Subject: [PATCH] qmlplugindump: Fix dumping of types Dumping broke with commit 70a2c049. Change-Id: Ifbae3dbc3e2d255c1e7f8848c579c04d0bf4b48e Reviewed-by: Christian Kamm --- tools/qmlplugindump/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qmlplugindump/main.cpp b/tools/qmlplugindump/main.cpp index b2e503c..762b7dd 100644 --- a/tools/qmlplugindump/main.cpp +++ b/tools/qmlplugindump/main.cpp @@ -254,7 +254,7 @@ QSet collectReachableMetaObjects(QQmlEngine *engine, const continue; // we don't handle QJSValue singleton types. } } else { - ty->create(); + object = ty->create(); } inObjectInstantiation.clear(); -- 2.7.4