summaryrefslogtreecommitdiff
path: root/src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h')
-rw-r--r--src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h b/src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h
index 59ccb4ee96..d5e7f966d2 100644
--- a/src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h
+++ b/src/plugins/vcprojectmanager/vcprojectmodel/configurationtools.h
@@ -44,15 +44,15 @@ public:
// ITools interface
ITools &operator =(const ITools &tools);
- void addTool(ITool *tool);
- void removeTool(ITool *tool);
- ITool *tool(const QString &toolKey) const;
- ITool *tool(int index) const;
+ void addTool(IConfigurationTool *tool);
+ void removeTool(IConfigurationTool *tool);
+ IConfigurationTool *tool(const QString &toolKey) const;
+ IConfigurationTool *tool(int index) const;
int toolCount() const;
void appendToXMLNode(QDomElement &domElement, QDomDocument &domDocument) const;
private:
- QList<ITool *> m_tools;
+ QList<IConfigurationTool *> m_tools;
};
} // namespace Internal