forked from qt-creator/qt-creator
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:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user