aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/productinstaller.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2018-04-26 11:02:21 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-04-27 08:43:42 +0000
commitde2fea77343b8b72de2e5a276316752a364639de (patch)
tree9ca2bc461aad4bdfd6fb4fb34ed9ca4626a20f25 /src/lib/corelib/buildgraph/productinstaller.cpp
parent235dfa540fb694ba6f9ccc5472bb38b97c0925d8 (diff)
Make ResolvedProject::products a vector
The value_type is not suitable for QList. Change-Id: If72af8998e9e1da37c8451bc6dc5925079be43dd Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/productinstaller.cpp')
-rw-r--r--src/lib/corelib/buildgraph/productinstaller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/productinstaller.cpp b/src/lib/corelib/buildgraph/productinstaller.cpp
index b83f40817..8e5af3266 100644
--- a/src/lib/corelib/buildgraph/productinstaller.cpp
+++ b/src/lib/corelib/buildgraph/productinstaller.cpp
@@ -60,7 +60,7 @@ namespace qbs {
namespace Internal {
ProductInstaller::ProductInstaller(const TopLevelProjectPtr &project,
- const QList<ResolvedProductPtr> &products, const InstallOptions &options,
+ const std::vector<ResolvedProductPtr> &products, const InstallOptions &options,
ProgressObserver *observer, const Logger &logger)
: m_project(project),
m_products(products),