CMake: Fix UI text

Change-Id: I5bf6e8a67bb09500502b4d35e227354390a3be19
Reviewed-by: Leander Beernaert <leander.beernaert@qt.io>
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Leena Miettinen
2019-10-28 16:12:21 +01:00
parent 5649e3ec7e
commit 5b943b6e7a
2 changed files with 21 additions and 21 deletions

View File

@@ -221,12 +221,12 @@ void CMakeProcess::handleProcessFinished(int code, QProcess::ExitStatus status)
QString msg;
if (status != QProcess::NormalExit) {
if (m_processWasCanceled) {
msg = tr("*** cmake process was canceled by the user.");
msg = tr("CMake process was canceled by the user.");
} else {
msg = tr("*** cmake process crashed.");
msg = tr("CMake process crashed.");
}
} else if (code != 0) {
msg = tr("*** cmake process exited with exit code %1.").arg(code);
msg = tr("CMake process exited with exit code %1.").arg(code);
}
if (!msg.isEmpty()) {