forked from qt-creator/qt-creator
CppEditor: No longer refer to clangd as experimental in the UI
Change-Id: Iadfbdf23a92ee551fff03f5eb5b8a1b2b15b0870 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -176,7 +176,7 @@
|
|||||||
|
|
||||||
\list 1
|
\list 1
|
||||||
\li Select \uicontrol Tools > \uicontrol Options > \uicontrol C++ >
|
\li Select \uicontrol Tools > \uicontrol Options > \uicontrol C++ >
|
||||||
\uicontrol Clangd > \uicontrol {Use clangd (EXPERIMENTAL)}.
|
\uicontrol Clangd > \uicontrol {Use clangd}.
|
||||||
\image qtcreator-options-clangd.png "clangd options"
|
\image qtcreator-options-clangd.png "clangd options"
|
||||||
\li In \uicontrol {Path to executable}, enter the path to clangd
|
\li In \uicontrol {Path to executable}, enter the path to clangd
|
||||||
version 13, or later.
|
version 13, or later.
|
||||||
|
|||||||
@@ -219,7 +219,7 @@ ClangdSettingsWidget::ClangdSettingsWidget(const ClangdSettings::Data &settingsD
|
|||||||
: d(new Private)
|
: d(new Private)
|
||||||
{
|
{
|
||||||
const ClangdSettings settings(settingsData);
|
const ClangdSettings settings(settingsData);
|
||||||
d->useClangdCheckBox.setText(tr("Use clangd (EXPERIMENTAL)"));
|
d->useClangdCheckBox.setText(tr("Use clangd"));
|
||||||
d->useClangdCheckBox.setChecked(settings.useClangd());
|
d->useClangdCheckBox.setChecked(settings.useClangd());
|
||||||
d->clangdChooser.setExpectedKind(Utils::PathChooser::ExistingCommand);
|
d->clangdChooser.setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
d->clangdChooser.setFilePath(settings.clangdFilePath());
|
d->clangdChooser.setFilePath(settings.clangdFilePath());
|
||||||
|
|||||||
Reference in New Issue
Block a user