aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/kitfeatureprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/kitfeatureprovider.h')
-rw-r--r--src/plugins/projectexplorer/kitfeatureprovider.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/kitfeatureprovider.h b/src/plugins/projectexplorer/kitfeatureprovider.h
index 69a8feee60..bb74e7a5ea 100644
--- a/src/plugins/projectexplorer/kitfeatureprovider.h
+++ b/src/plugins/projectexplorer/kitfeatureprovider.h
@@ -25,7 +25,6 @@
#pragma once
-#include <coreplugin/id.h>
#include <coreplugin/featureprovider.h>
namespace ProjectExplorer {
@@ -34,9 +33,9 @@ namespace Internal {
class KitFeatureProvider : public Core::IFeatureProvider
{
public:
- QSet<Core::Id> availableFeatures(Core::Id id) const override;
- QSet<Core::Id> availablePlatforms() const override;
- QString displayNameForPlatform(Core::Id id) const override;
+ QSet<Utils::Id> availableFeatures(Utils::Id id) const override;
+ QSet<Utils::Id> availablePlatforms() const override;
+ QString displayNameForPlatform(Utils::Id id) const override;
};
} // namespace Internal