summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-09-26 10:22:11 +0200
committerChristian Stenger <christian.stenger@qt.io>2018-09-26 10:05:18 +0000
commit6f14b6f399f13c33276d5cec546901cdcb47e39a (patch)
tree9c948bb4e04d89937c0c1958bc7d9a8e4f91b693
parent7f2bbe9cfb337a6d6c6dc7ef68d86d320006e2ee (diff)
downloadqt-creator-6f14b6f399f13c33276d5cec546901cdcb47e39a.tar.gz
Tests: Fix compile
Amends 4b42789bda. Change-Id: Ibd4d024ad836accf4fdda880eb342c61a6c32219 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 91299b3662..8d550d2022 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -1658,7 +1658,7 @@ void tst_Dumpers::dumper()
WatchItem local;
local.iname = "local";
- for (const GdbMi &child : qAsConst(actual.children())) {
+ for (const GdbMi &child : actual) {
const QString iname = child["iname"].data();
if (iname == "local.qtversion")
context.qtVersion = child["value"].toInt();