aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakeproject.cpp
diff options
context:
space:
mode:
authorTobias Hunger <[email protected]>2010-07-06 17:49:09 +0200
committerTobias Hunger <[email protected]>2010-07-06 18:36:30 +0200
commit8ccbd0ec6bc1dbea7996e93d37e292f63c123197 (patch)
treececb4c360b74b895b4ceccc7c6c6651e5d3ea66c /src/plugins/cmakeprojectmanager/cmakeproject.cpp
parent7fa5d25e0f98e2451c3b1ceebf34d5a42a3b3099 (diff)
Rename StepType to BuildStep::Type
* Move and rename the enum * Add Q_ENUMS macro Reviewed-by: dt
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakeproject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.cpp b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
index 283d07624cf..7335905ffb5 100644
--- a/src/plugins/cmakeprojectmanager/cmakeproject.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakeproject.cpp
@@ -521,7 +521,7 @@ bool CMakeProject::fromMap(const QVariantMap &map)
if (!hasUserFile && hasBuildTarget("all")) {
MakeStep *makeStep = qobject_cast<MakeStep *>(
- activeTarget()->activeBuildConfiguration()->steps(ProjectExplorer::Build).at(0));
+ activeTarget()->activeBuildConfiguration()->steps(ProjectExplorer::BuildStep::Build).at(0));
Q_ASSERT(makeStep);
makeStep->setBuildTarget("all", true);
}