diff options
author | hjk <[email protected]> | 2012-08-03 15:24:33 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2012-08-06 10:37:43 +0200 |
commit | 83e573f2ece5902454b19aab8ecac4f4ca4b91e5 (patch) | |
tree | da1520aa62a5eb87d9c9e770a5ef974d77be3a7b /src/plugins/autotoolsprojectmanager/autogenstep.cpp | |
parent | 7ca93f9b1e728b99a0a4d554733a1fa31e6ab4d9 (diff) |
use new id comparison operators to reduce line noise and save cycles
Change-Id: I2e7d81a4efb75877901d29964df4f71314e951b4
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/autogenstep.cpp')
-rw-r--r-- | src/plugins/autotoolsprojectmanager/autogenstep.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/autotoolsprojectmanager/autogenstep.cpp b/src/plugins/autotoolsprojectmanager/autogenstep.cpp index c19f8a241ad..e1ba2973f75 100644 --- a/src/plugins/autotoolsprojectmanager/autogenstep.cpp +++ b/src/plugins/autotoolsprojectmanager/autogenstep.cpp @@ -74,7 +74,7 @@ QList<Core::Id> AutogenStepFactory::availableCreationIds(BuildStepList *parent) QString AutogenStepFactory::displayNameForId(const Core::Id id) const { - if (id == Core::Id(AUTOGEN_STEP_ID)) + if (id == AUTOGEN_STEP_ID) return tr("Autogen", "Display name for AutotoolsProjectManager::AutogenStep id."); return QString(); } @@ -121,9 +121,9 @@ BuildStep *AutogenStepFactory::restore(BuildStepList *parent, const QVariantMap bool AutogenStepFactory::canHandle(BuildStepList *parent) const { - if (parent->target()->project()->id() != Core::Id(Constants::AUTOTOOLS_PROJECT_ID)) - return false; - return parent->id() == Core::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD); + if (parent->target()->project()->id() == Constants::AUTOTOOLS_PROJECT_ID) + return parent->id() == ProjectExplorer::Constants::BUILDSTEPS_BUILD; + return false; } //////////////////////// |