Git commit 06cef8ff4953f7633119dd895a3791bd34ee4bf7 by Luigi Toscano. Committed on 30/11/2016 at 23:20. Pushed by ltoscano into branch 'master'. Fix UI string: use the proper case for LLDB M +2 -2 debuggers/lldb/debugsession.cpp https://commits.kde.org/kdevelop/06cef8ff4953f7633119dd895a3791bd34ee4bf7 diff --git a/debuggers/lldb/debugsession.cpp b/debuggers/lldb/debugsession.= cpp index d149cb5..21a24a7 100644 --- a/debuggers/lldb/debugsession.cpp +++ b/debuggers/lldb/debugsession.cpp @@ -150,9 +150,9 @@ MICommand *DebugSession::createUserCommand(const QStrin= g& cmd) const { if (m_hasCorrectCLIOutput) return MIDebugSession::createUserCommand(cmd); - auto msg =3D i18n("Attempting to execute user command on unsupported l= ldb version"); + auto msg =3D i18n("Attempting to execute user command on unsupported L= LDB version"); emit debuggerInternalOutput(msg); - qCDebug(DEBUGGERLLDB) << "Attempting user command on unsupported lldb = version"; + qCDebug(DEBUGGERLLDB) << "Attempting user command on unsupported LLDB = version"; return nullptr; } =20