Skip to content
Snippets Groups Projects
Commit d244efe1 authored by con's avatar con
Browse files

Fix format of "foo existed with code n" message.

Broke by recent refactorings.

Reviewed-by: Tobias Hunger
parent 4116504c
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ void LocalApplicationRunControl::processExited(int exitCode) ...@@ -132,7 +132,7 @@ void LocalApplicationRunControl::processExited(int exitCode)
{ {
QString msg = tr("%1 exited with code %2") QString msg = tr("%1 exited with code %2")
.arg(QDir::toNativeSeparators(m_executable)).arg(exitCode); .arg(QDir::toNativeSeparators(m_executable)).arg(exitCode);
appendMessage(msg, ErrorMessageFormat); appendMessage(msg, NormalMessageFormat);
emit finished(); emit finished();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment