1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

startExecutable(): Restore error handling

This commit is contained in:
Alexander Wilms 2024-07-14 19:07:27 +02:00
parent 875a8cc11a
commit f9de3b2ffd

View File

@ -115,6 +115,13 @@ void startExecutable(QString name, const QStringList & args)
QProcess process;
process.start(name, args);
process.waitForFinished(-1);
if (process.exitStatus() != QProcess::NormalExit || process.exitCode() != 0) {
QMessageBox::critical(qApp->activeWindow(),
QObject::tr("Error starting executable"),
QObject::tr("Failed to start %1\nReason: %2").arg(name, process.errorString()));
}
qApp->quit();
}
#endif