aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotoolsprojectmanager/autogenstep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/autogenstep.cpp')
-rw-r--r--src/plugins/autotoolsprojectmanager/autogenstep.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/autotoolsprojectmanager/autogenstep.cpp b/src/plugins/autotoolsprojectmanager/autogenstep.cpp
index b4ae6775d52..0762531f3be 100644
--- a/src/plugins/autotoolsprojectmanager/autogenstep.cpp
+++ b/src/plugins/autotoolsprojectmanager/autogenstep.cpp
@@ -61,7 +61,7 @@ const char AUTOGEN_STEP_ID[] = "AutotoolsProjectManager.AutogenStep";
// AutogenStepFactory class
/////////////////////////////
AutogenStepFactory::AutogenStepFactory(QObject *parent) :
- ProjectExplorer::IBuildStepFactory(parent)
+ IBuildStepFactory(parent)
{
}
@@ -109,9 +109,9 @@ BuildStep *AutogenStepFactory::clone(BuildStepList *parent, BuildStep *source)
return new AutogenStep(parent, static_cast<AutogenStep *>(source));
}
-bool AutogenStepFactory::canRestore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map) const
+bool AutogenStepFactory::canRestore(BuildStepList *parent, const QVariantMap &map) const
{
- QString id(ProjectExplorer::idFromMap(map));
+ QString id = idFromMap(map);
return canCreate(parent, id);
}
@@ -129,20 +129,20 @@ BuildStep *AutogenStepFactory::restore(BuildStepList *parent, const QVariantMap
////////////////////////
// AutogenStep class
////////////////////////
-AutogenStep::AutogenStep(ProjectExplorer::BuildStepList *bsl) :
+AutogenStep::AutogenStep(BuildStepList *bsl) :
AbstractProcessStep(bsl, QLatin1String(AUTOGEN_STEP_ID)),
m_runAutogen(false)
{
ctor();
}
-AutogenStep::AutogenStep(ProjectExplorer::BuildStepList *bsl, const QString &id) :
+AutogenStep::AutogenStep(BuildStepList *bsl, const QString &id) :
AbstractProcessStep(bsl, id)
{
ctor();
}
-AutogenStep::AutogenStep(ProjectExplorer::BuildStepList *bsl, AutogenStep *bs) :
+AutogenStep::AutogenStep(BuildStepList *bsl, AutogenStep *bs) :
AbstractProcessStep(bsl, bs),
m_additionalArguments(bs->additionalArguments())
{
@@ -200,7 +200,7 @@ void AutogenStep::run(QFutureInterface<bool> &interface)
AbstractProcessStep::run(interface);
}
-ProjectExplorer::BuildStepConfigWidget* AutogenStep::createConfigWidget()
+BuildStepConfigWidget *AutogenStep::createConfigWidget()
{
return new AutogenStepConfigWidget(this);
}