From: Kai Koehne Date: Fri, 7 Sep 2012 09:37:19 +0000 (+0200) Subject: qmlplugindump: Fix dumping of types X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b47966f5c7910e29f456d9a809f120a99c10ee4;p=profile%2Fivi%2Fqtdeclarative.git qmlplugindump: Fix dumping of types Dumping broke with commit 70a2c049. Change-Id: Ifbae3dbc3e2d255c1e7f8848c579c04d0bf4b48e Reviewed-by: Christian Kamm --- 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();