From kde-commits Wed Nov 30 23:21:37 2016 From: Luigi Toscano Date: Wed, 30 Nov 2016 23:21:37 +0000 To: kde-commits Subject: [kdevelop] debuggers/lldb: Fix UI string: use the proper case for LLDB Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=148054810831022 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