Move OutputFormatter to Utils lib.

This commit is contained in:
con
2011-04-15 12:59:44 +02:00
parent 28c92cf044
commit 2cf76ead26
38 changed files with 168 additions and 148 deletions

View File

@@ -142,12 +142,12 @@ QIcon AnalyzerRunControl::icon() const
void AnalyzerRunControl::receiveStandardOutput(const QString &text)
{
appendMessage(text, ProjectExplorer::StdOutFormat);
appendMessage(text, Utils::StdOutFormat);
}
void AnalyzerRunControl::receiveStandardError(const QString &text)
{
appendMessage(text, ProjectExplorer::StdErrFormat);
appendMessage(text, Utils::StdErrFormat);
}
void AnalyzerRunControl::addTask(ProjectExplorer::Task::TaskType type, const QString &description,