summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2014-08-28 11:06:26 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-08-29 12:39:48 +0200
commit42d2b1ba06ad38fe938bc69f34f0d5714b1f201b (patch)
treef3710c4ae17aa2f721950f8064bc8fc6b39677f4 /tools
parentc855e20dff8feda133fa344ac9cb5542b986cf4f (diff)
Adjust implementation to not use the collection manager.
Change-Id: Ie38460ff4a94b5583cabb1ecad97cd6c9a906c15 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/devtool/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/devtool/main.cpp b/tools/devtool/main.cpp
index ca11414a4..28017bbd9 100644
--- a/tools/devtool/main.cpp
+++ b/tools/devtool/main.cpp
@@ -193,8 +193,8 @@ int main(int argc, char *argv[])
}
// setup the binary format engine
- QScopedPointer<QInstaller::BinaryFormatEngineHandler> binaryFormatEngineHandler;
- binaryFormatEngineHandler.reset(new QInstaller::BinaryFormatEngineHandler(manager));
+ QInstaller::BinaryFormatEngineHandler binaryFormatEngineHandler;
+ binaryFormatEngineHandler.registerResources(manager.collections());
if (parser.isSet(run)) {
OperationRunner runner(layout.magicMarker, performedOperations);