diff --git a/src/plugins/projectexplorer/buildconfiguration.cpp b/src/plugins/projectexplorer/buildconfiguration.cpp index e40eff6225c..df9561db067 100644 --- a/src/plugins/projectexplorer/buildconfiguration.cpp +++ b/src/plugins/projectexplorer/buildconfiguration.cpp @@ -199,7 +199,7 @@ bool BuildConfiguration::fromMap(const QVariantMap &map) setToolChain(ToolChainManager::instance()->findToolChain(id)); // Do not validate the tool chain as // the BC is not completely set up yet! - // TODO: We currently assume there to be at least a clean and build list! + // We currently assume there to be at least a clean and build list! QTC_CHECK(knownStepLists().contains(Core::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD))); QTC_CHECK(knownStepLists().contains(Core::Id(ProjectExplorer::Constants::BUILDSTEPS_CLEAN))); diff --git a/src/plugins/projectexplorer/deployconfiguration.cpp b/src/plugins/projectexplorer/deployconfiguration.cpp index d46f6e254a0..f7f0469a415 100644 --- a/src/plugins/projectexplorer/deployconfiguration.cpp +++ b/src/plugins/projectexplorer/deployconfiguration.cpp @@ -127,7 +127,7 @@ bool DeployConfiguration::fromMap(const QVariantMap &map) return false; } - // TODO: We assume that we hold the deploy list + // We assume that we hold the deploy list Q_ASSERT(m_stepList && m_stepList->id() == Core::Id(ProjectExplorer::Constants::BUILDSTEPS_DEPLOY)); return true; diff --git a/src/plugins/projectexplorer/session.cpp b/src/plugins/projectexplorer/session.cpp index 87127403fd3..3fa142260b2 100644 --- a/src/plugins/projectexplorer/session.cpp +++ b/src/plugins/projectexplorer/session.cpp @@ -158,7 +158,7 @@ bool SessionManager::recursiveDependencyCheck(const QString &newDep, const QStri } /* - * TODO: The dependency management exposes an interface based on projects, but + * The dependency management exposes an interface based on projects, but * is internally purely string based. This is suboptimal. Probably it would be * nicer to map the filenames to projects on load and only map it back to * filenames when saving.