Skip to content
Snippets Groups Projects
Commit d34ad30b authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

fix error message

these are a mess anyway
parent a4760b71
No related branches found
No related tags found
No related merge requests found
...@@ -90,10 +90,7 @@ void RemoteGdbAdapter::uploadProcError(QProcess::ProcessError error) ...@@ -90,10 +90,7 @@ void RemoteGdbAdapter::uploadProcError(QProcess::ProcessError error)
QString msg; QString msg;
switch (error) { switch (error) {
case QProcess::FailedToStart: case QProcess::FailedToStart:
msg = tr("The upload process failed to start. Either the " msg = tr("The upload process failed to start. Shell missing?");
"invoked script '%1' is missing, or you may have insufficient "
"permissions to invoke the program.")
.arg(theDebuggerStringSetting(GdbLocation));
break; break;
case QProcess::Crashed: case QProcess::Crashed:
msg = tr("The upload process crashed some time after starting " msg = tr("The upload process crashed some time after starting "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment