forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/11.0' into qds/dev
Conflicts: src/plugins/qmldesigner/CMakeLists.txt src/plugins/qmldesignerbase/CMakeLists.txt src/plugins/qmlprojectmanager/CMakeLists.txt Change-Id: If706ae3fe7a7d0e17036ce6285bec772d1f6127d
This commit is contained in:
@@ -185,7 +185,7 @@ void doExit(int exitCode)
|
||||
std::cout << commandLineParser.value("wait").toStdString() << std::endl;
|
||||
|
||||
waitingForExitKeyPress = true;
|
||||
onKeyPress([exitCode] { doExit(exitCode); });
|
||||
onKeyPress([] { doExit(0); });
|
||||
} else {
|
||||
exit(exitCode);
|
||||
}
|
||||
@@ -206,9 +206,7 @@ void onInferiorFinished(int exitCode, QProcess::ExitStatus status)
|
||||
|
||||
void onInferiorErrorOccurered(QProcess::ProcessError error)
|
||||
{
|
||||
qCInfo(log) << "Inferior error: " << error << inferiorProcess.errorString();
|
||||
sendCrash(inferiorProcess.exitCode());
|
||||
doExit(1);
|
||||
qCWarning(log) << "Inferior error: " << error << inferiorProcess.errorString();
|
||||
}
|
||||
|
||||
void onInferiorStarted()
|
||||
|
||||
Reference in New Issue
Block a user