ClangTools: Add errors as errors to issues pane

Fixes: QTCREATORBUG-19047
Change-Id: I4aca248d1ccb625fef77632bf35b554d7441e5cc
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Nikolai Kosjar
2019-02-08 13:11:15 +01:00
parent 933f5a0df5
commit d6a6d356bb

View File

@@ -443,7 +443,7 @@ void ClangToolRunControl::onRunnerFinishedWithFailure(const QString &errorMessag
m_success = false; m_success = false;
appendMessage(message, Utils::StdErrFormat); appendMessage(message, Utils::StdErrFormat);
appendMessage(errorDetails, Utils::StdErrFormat); appendMessage(errorDetails, Utils::StdErrFormat);
TaskHub::addTask(Task::Warning, message, Debugger::Constants::ANALYZERTASK_ID); TaskHub::addTask(Task::Error, message, Debugger::Constants::ANALYZERTASK_ID);
handleFinished(); handleFinished();
} }