diff options
author | Christian Kamm <christian.d.kamm@nokia.com> | 2011-05-30 08:20:29 (GMT) |
---|---|---|
committer | Christian Kamm <christian.d.kamm@nokia.com> | 2011-05-30 09:33:56 (GMT) |
commit | 10f16bc55b9e5535bc3353260f97a32e18d70cf1 (patch) | |
tree | d67dec52d49ed8bc670711575d490c5746795cd5 /tools/qmlplugindump | |
parent | b0392d398e2f28682cdce6e85546d38a838440f7 (diff) | |
download | Qt-10f16bc55b9e5535bc3353260f97a32e18d70cf1.zip Qt-10f16bc55b9e5535bc3353260f97a32e18d70cf1.tar.gz Qt-10f16bc55b9e5535bc3353260f97a32e18d70cf1.tar.bz2 |
qmlplugindump: Bump QtQuick.tooling version to 1.1.
Mirrors a change to qmlplugindump in
qtcreator/715cee76a9e46efb7f8245004aaa8a1c47b1618d
Reviewed-by: Kai Koehne
Diffstat (limited to 'tools/qmlplugindump')
-rw-r--r-- | tools/qmlplugindump/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmlplugindump/main.cpp b/tools/qmlplugindump/main.cpp index acc1b19..f398358 100644 --- a/tools/qmlplugindump/main.cpp +++ b/tools/qmlplugindump/main.cpp @@ -510,7 +510,7 @@ int main(int argc, char *argv[]) engine->addImportPath(pluginImportPath); // find all QMetaObjects reachable from the builtin module - QByteArray importCode("import QtQuick 1.0\n"); + QByteArray importCode("import QtQuick 1.1\n"); QSet<const QMetaObject *> defaultReachable = collectReachableMetaObjects(importCode, engine); // this will hold the meta objects we want to dump information of |