aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/projectsettingswidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/projectsettingswidget.h')
-rw-r--r--src/plugins/autotest/projectsettingswidget.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/autotest/projectsettingswidget.h b/src/plugins/autotest/projectsettingswidget.h
index 66da382f02..d921d56e88 100644
--- a/src/plugins/autotest/projectsettingswidget.h
+++ b/src/plugins/autotest/projectsettingswidget.h
@@ -34,10 +34,12 @@ class QTreeWidget;
class QTreeWidgetItem;
QT_END_NAMESPACE
-namespace Core { class Id; }
namespace ProjectExplorer { class Project; }
namespace Autotest {
+
+class ITestFramework;
+
namespace Internal {
class TestProjectSettings;
@@ -49,7 +51,7 @@ public:
explicit ProjectTestSettingsWidget(ProjectExplorer::Project *project,
QWidget *parent = nullptr);
private:
- void populateFrameworks(const QMap<Core::Id, bool> &frameworks);
+ void populateFrameworks(const QMap<Autotest::ITestFramework *, bool> &frameworks);
void onActiveFrameworkChanged(QTreeWidgetItem *item, int column);
TestProjectSettings *m_projectSettings;
QComboBox *m_useGlobalSettings = nullptr;