mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-15 01:24:45 +02:00
startExecutable(): Restore error handling
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user