summaryrefslogtreecommitdiff
path: root/src/plugins/autotest/quick/quicktesttreeitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/quick/quicktesttreeitem.h')
-rw-r--r--src/plugins/autotest/quick/quicktesttreeitem.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/plugins/autotest/quick/quicktesttreeitem.h b/src/plugins/autotest/quick/quicktesttreeitem.h
index a599c6ceab..f9977b1bec 100644
--- a/src/plugins/autotest/quick/quicktesttreeitem.h
+++ b/src/plugins/autotest/quick/quicktesttreeitem.h
@@ -35,7 +35,7 @@ class QuickTestTreeItem : public TestTreeItem
public:
explicit QuickTestTreeItem(ITestFramework *testFramework,
const QString &name = QString(),
- const QString &filePath = QString(),
+ const Utils::FilePath &filePath = Utils::FilePath(),
Type type = Root)
: TestTreeItem(testFramework, name, filePath, type)
{}
@@ -59,12 +59,11 @@ public:
bool removeOnSweepIfEmpty() const override;
TestTreeItem *createParentGroupNode() const override;
bool isGroupable() const override;
- QSet<QString> internalTargets() const override;
- void markForRemovalRecursively(const QString &filePath) override;
+ void markForRemovalRecursively(const Utils::FilePath &filePath) override;
private:
- TestTreeItem *findChildByFileNameAndType(const QString &filePath, const QString &name,
+ TestTreeItem *findChildByFileNameAndType(const Utils::FilePath &filePath, const QString &name,
Type tType);
- TestTreeItem *findChildByNameFileAndLine(const QString &name, const QString &filePath,
+ TestTreeItem *findChildByNameFileAndLine(const QString &name, const Utils::FilePath &filePath,
int line);
TestTreeItem *unnamedQuickTests() const;
};