diff options
author | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2013-10-11 12:45:42 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2013-10-11 12:52:59 +0200 |
commit | 10551ba30c335625f8406fa1bf39d3750d4c641d (patch) | |
tree | 05f2cc601216c9425cf80dcdd57f5ba5773b70a6 /src/plugins/debugger | |
parent | d6afbdd047ad86210f1e6ef7da30b9d0e34b7f2d (diff) | |
download | qt-creator-10551ba30c335625f8406fa1bf39d3750d4c641d.tar.gz |
LLDB: fix message text
Write LLDB in all caps in messages.
Change-Id: I9683bbfb20e69a7993d27d96959435e09510b50b
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger')
-rw-r--r-- | src/plugins/debugger/lldb/lldbengine.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/debugger/lldb/lldbengine.cpp b/src/plugins/debugger/lldb/lldbengine.cpp index 8c2334c32c..b8318deb90 100644 --- a/src/plugins/debugger/lldb/lldbengine.cpp +++ b/src/plugins/debugger/lldb/lldbengine.cpp @@ -151,7 +151,7 @@ void LldbEngine::setupEngine() << (Core::ICore::resourcePath() + _("/debugger/lldbbridge.py")) << m_lldbCmd); if (!m_lldbProc.waitForStarted()) { - const QString msg = tr("Unable to start lldb '%1': %2") + const QString msg = tr("Unable to start LLDB '%1': %2") .arg(m_lldbCmd, m_lldbProc.errorString()); notifyEngineSetupFailed(); showMessage(_("ADAPTER START FAILED")); @@ -774,7 +774,7 @@ void LldbEngine::handleLldbError(QProcess::ProcessError error) default: //setState(EngineShutdownRequested, true); m_lldbProc.kill(); - showMessageBox(QMessageBox::Critical, tr("Lldb I/O Error"), + showMessageBox(QMessageBox::Critical, tr("LLDB I/O Error"), errorMessage(error)); break; } @@ -784,12 +784,12 @@ QString LldbEngine::errorMessage(QProcess::ProcessError error) const { switch (error) { case QProcess::FailedToStart: - return tr("The Lldb process failed to start. Either the " + return tr("The LLDB process failed to start. Either the " "invoked program '%1' is missing, or you may have insufficient " "permissions to invoke the program.") .arg(m_lldbCmd); case QProcess::Crashed: - return tr("The Lldb process crashed some time after starting " + return tr("The LLDB process crashed some time after starting " "successfully."); case QProcess::Timedout: return tr("The last waitFor...() function timed out. " @@ -797,7 +797,7 @@ QString LldbEngine::errorMessage(QProcess::ProcessError error) const "waitFor...() again."); case QProcess::WriteError: return tr("An error occurred when attempting to write " - "to the Lldb process. For example, the process may not be running, " + "to the LLDB process. For example, the process may not be running, " "or it may have closed its input channel."); case QProcess::ReadError: return tr("An error occurred when attempting to read from " |