ProjectExplorer: Remove redundant namespace qualifications

Change-Id: Id9034e31f3f61c38894111951534dd0d59b746dc
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2014-10-13 22:37:28 +03:00
committed by hjk
parent c86ef46f6f
commit c884f3e0ef
70 changed files with 334 additions and 326 deletions

View File

@@ -77,7 +77,7 @@ Task Task::compilerMissingTask()
"Qt Creator needs a compiler set up to build. "
"Configure a compiler in the kit options."),
Utils::FileName(), -1,
ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM);
Constants::TASK_CATEGORY_BUILDSYSTEM);
}
Task Task::buildConfigurationMissingTask()
@@ -87,7 +87,7 @@ Task Task::buildConfigurationMissingTask()
"Qt Creator needs a build configuration set up to build. "
"Configure a build configuration in the project settings."),
Utils::FileName(), -1,
ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM);
Constants::TASK_CATEGORY_BUILDSYSTEM);
}
void Task::addMark(TextEditor::TextMark *mark)
@@ -125,13 +125,13 @@ bool operator==(const Task &t1, const Task &t2)
bool operator<(const Task &a, const Task &b)
{
if (a.type != b.type) {
if (a.type == ProjectExplorer::Task::Error)
if (a.type == Task::Error)
return true;
if (b.type == ProjectExplorer::Task::Error)
if (b.type == Task::Error)
return false;
if (a.type == ProjectExplorer::Task::Warning)
if (a.type == Task::Warning)
return true;
if (b.type == ProjectExplorer::Task::Warning)
if (b.type == Task::Warning)
return false;
// Can't happen
return true;