summaryrefslogtreecommitdiff
path: root/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2010-01-19 13:41:02 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2010-02-01 12:23:13 +0100
commitf923a561c3b3ba2e3761b9b96b595044c8796011 (patch)
treea777ad4cfd1a2560f2a130e152f577223b8ee6f5 /src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
parent16a7d5daa2696425848927f47c40ffbcb48407ca (diff)
downloadqt-creator-f923a561c3b3ba2e3761b9b96b595044c8796011.tar.gz
Make use of ProjectConfiguration in RunConfigurations
Reviewed-by: dt
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
index b3a83d7d33..6d029aaef6 100644
--- a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp
@@ -57,8 +57,8 @@ bool CMakeProjectPlugin::initialize(const QStringList & /*arguments*/, QString *
CMakeSettingsPage *cmp = new CMakeSettingsPage();
addAutoReleasedObject(cmp);
addAutoReleasedObject(new CMakeManager(cmp));
- addAutoReleasedObject(new MakeStepFactory());
- addAutoReleasedObject(new CMakeRunConfigurationFactory());
+ addAutoReleasedObject(new MakeStepFactory);
+ addAutoReleasedObject(new CMakeRunConfigurationFactory);
return true;
}