forked from qt-creator/qt-creator
LSP: Fix capitalization of UI text
Change-Id: I4da433bcb3d313782f100775a8553df9d9aadf7e Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -658,7 +658,7 @@ void BaseClient::intializeCallback(const InitializeResponse &initResponse)
|
||||
if (optional<ResponseError<InitializeError>> error = initResponse.error()) {
|
||||
if (error.value().data().has_value()
|
||||
&& error.value().data().value().retry().value_or(false)) {
|
||||
const QString title(tr("Language Server \"%1\" initialize error"));
|
||||
const QString title(tr("Language Server \"%1\" Initialize Error"));
|
||||
auto result = QMessageBox::warning(Core::ICore::dialogParent(),
|
||||
title,
|
||||
error.value().message(),
|
||||
|
||||
Reference in New Issue
Block a user