Drop ::ExitStatus:: and ::ProcessError::

That's superfluous. Fix comparison of QProcess::exitCode
with QProcess::ExitStatus.

Change-Id: I49d746fdbbc279e3e04c4ed57d386560e7cbe4b4
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-02-14 16:03:43 +01:00
parent 6f1285f508
commit a3ff220f5b
5 changed files with 11 additions and 11 deletions

View File

@@ -118,29 +118,29 @@ void MesonProcess::handleProcessError(QProcess::ProcessError error)
QString message;
QString commandStr = m_currentCommand.toUserOutput();
switch (error) {
case QProcess::ProcessError::FailedToStart:
case QProcess::FailedToStart:
message = tr("The process failed to start.")
+ tr("Either the "
"invoked program \"%1\" is missing, or you may have insufficient "
"permissions to invoke the program.")
.arg(m_currentCommand.executable().toUserOutput());
break;
case QProcess::ProcessError::Crashed:
case QProcess::Crashed:
message = tr("The process was ended forcefully.");
break;
case QProcess::ProcessError::Timedout:
case QProcess::Timedout:
message = tr("Process timed out.");
break;
case QProcess::ProcessError::WriteError:
case QProcess::WriteError:
message = tr("An error occurred when attempting to write "
"to the process. For example, the process may not be running, "
"or it may have closed its input channel.");
break;
case QProcess::ProcessError::ReadError:
case QProcess::ReadError:
message = tr("An error occurred when attempting to read from "
"the process. For example, the process may not be running.");
break;
case QProcess::ProcessError::UnknownError:
case QProcess::UnknownError:
message = tr("An unknown error in the process occurred.");
break;
}