summaryrefslogtreecommitdiff
path: root/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-03-18 13:33:00 +0100
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2009-03-18 13:55:13 +0100
commit3904b2ad3e3f6fd7c900acd3abe3ab73d828e351 (patch)
tree095ebe334d672855af9ac6d4ad9a5a70fb628b71 /src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
parent93b3dda602ccfc67bf4f55f58323f654ad1d335d (diff)
downloadqt-creator-3904b2ad3e3f6fd7c900acd3abe3ab73d828e351.tar.gz
Class name simplification for MakeStep related classes
Was a bit confusing that a MakeStep was constructed by a MakeBuildStepFactory and configured by a MakeBuildStepConfigWidget. The MakeStep of the generic project manager was renamed to GenericMakeStep.
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
index de077c2dc9..b9ac488afb 100644
--- a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
@@ -57,7 +57,7 @@ bool CMakeProjectPlugin::initialize(const QStringList & /*arguments*/, QString *
CMakeSettingsPage *cmp = new CMakeSettingsPage();
addAutoReleasedObject(cmp);
addAutoReleasedObject(new CMakeManager(cmp));
- addAutoReleasedObject(new MakeBuildStepFactory());
+ addAutoReleasedObject(new MakeStepFactory());
addAutoReleasedObject(new CMakeRunConfigurationFactory());
return true;
}