From 8f33979403a4ca22b41982194103fe90290f54ad Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 25 Apr 2016 08:53:17 +0200 Subject: [PATCH] AutoTest: Fix marking for removal by file Was forgotten in ed6f4133e8b8cae72aaae8ad29af425d5e910cff. Change-Id: I2cdf06b6872e1ae80a7039d0d15593af37b1c5fa Reviewed-by: David Schulz --- src/plugins/autotest/testtreemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/autotest/testtreemodel.cpp b/src/plugins/autotest/testtreemodel.cpp index 4701e126a66..9b5d59258ff 100644 --- a/src/plugins/autotest/testtreemodel.cpp +++ b/src/plugins/autotest/testtreemodel.cpp @@ -638,7 +638,7 @@ void TestTreeModel::markForRemoval(const QString &filePath) for ( ; grandChildRow >= 0; --grandChildRow) { TestTreeItem *grandChild = child->childItem(grandChildRow); if (grandChild->filePath() == filePath) { - grandChild->markForRemoval(true); + grandChild->markForRemovalRecursively(true); } } }