Android: Fix messages

Change-Id: If1af26c7c5762b14887787a30cd7dc37d44f9950
Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
Leena Miettinen
2018-06-08 13:57:32 +02:00
parent 22dfd2c3c8
commit a9b0fa026f

View File

@@ -390,7 +390,7 @@ void AndroidRunnerWorker::asyncStartHelper()
}
if (gdbServerExecutable.isEmpty()) {
emit remoteProcessFinished(tr("Can't find C++ debugger."));
emit remoteProcessFinished(tr("Cannot find C++ debugger."));
return;
}
@@ -495,7 +495,7 @@ void AndroidRunnerWorker::handleJdbWaiting()
QString("com.sun.jdi.SocketAttach:hostname=localhost,port=%1")
.arg(m_localJdbServerPort.toString()));
if (!jdbProcess->waitForStarted()) {
emit remoteProcessFinished(tr("Failed to start JDB"));
emit remoteProcessFinished(tr("Failed to start jdb"));
return;
}
m_jdbProcess = std::move(jdbProcess);
@@ -531,7 +531,7 @@ void AndroidRunnerWorker::handleJdbSettled()
}
}
}
emit remoteProcessFinished(tr("Can't attach jdb to the running application").arg(m_lastRunAdbError));
emit remoteProcessFinished(tr("Cannot attach jdb to the running application").arg(m_lastRunAdbError));
}
void AndroidRunnerWorker::onProcessIdChanged(qint64 pid)