aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/nodetreedumper.cpp
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-04-16 13:07:28 +0200
committerIvan Komissarov <abbapoh@gmail.com>2020-04-16 13:07:28 +0200
commit04240d47225f06eb36df4eec2270813a78a44344 (patch)
tree06dc4ad265583413912a23ccfaaf1fdee04ed2ac /src/lib/corelib/buildgraph/nodetreedumper.cpp
parentebda20ac2677085d79f5a6fab31a282cbcd958d5 (diff)
parent99d009c0ae5558d86159206e7a27d4ed7e8ade28 (diff)
Merge branch 'master' into wip/ci-ios
Diffstat (limited to 'src/lib/corelib/buildgraph/nodetreedumper.cpp')
-rw-r--r--src/lib/corelib/buildgraph/nodetreedumper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/buildgraph/nodetreedumper.cpp b/src/lib/corelib/buildgraph/nodetreedumper.cpp
index 89975baf2..8475a46cf 100644
--- a/src/lib/corelib/buildgraph/nodetreedumper.cpp
+++ b/src/lib/corelib/buildgraph/nodetreedumper.cpp
@@ -51,13 +51,13 @@
namespace qbs {
namespace Internal {
-static unsigned int indentWidth() { return 4; }
+static int indentWidth() { return 4; }
NodeTreeDumper::NodeTreeDumper(QIODevice &outDevice) : m_outDevice(outDevice)
{
}
-void NodeTreeDumper::start(const QList<ResolvedProductPtr> &products)
+void NodeTreeDumper::start(const QVector<ResolvedProductPtr> &products)
{
m_indentation = 0;
for (const ResolvedProductPtr &p : products) {