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.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/autotest/quick/quicktesttreeitem.h b/src/plugins/autotest/quick/quicktesttreeitem.h
index f99db4ce54..050c7c4dd1 100644
--- a/src/plugins/autotest/quick/quicktesttreeitem.h
+++ b/src/plugins/autotest/quick/quicktesttreeitem.h
@@ -33,8 +33,12 @@ namespace Internal {
class QuickTestTreeItem : public TestTreeItem
{
public:
- explicit QuickTestTreeItem(const QString &name = QString(), const QString &filePath = QString(),
- Type type = Root) : TestTreeItem(name, filePath, type) {}
+ explicit QuickTestTreeItem(ITestFramework *framework,
+ const QString &name = QString(),
+ const QString &filePath = QString(),
+ Type type = Root)
+ : TestTreeItem(framework, name, filePath, type)
+ {}
TestTreeItem *copyWithoutChildren() override;
QVariant data(int column, int role) const override;