LanguageClient: unify client container

Change-Id: I17b5e7ca4999cd5a9ca8e79577f29854082b6c6b
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2022-03-14 08:36:37 +01:00
parent f69de8b5bc
commit 5924268568
7 changed files with 23 additions and 23 deletions

View File

@@ -442,7 +442,7 @@ bool PyLSSettings::applyFromSettingsWidget(QWidget *widget)
if (m_configuration != pylswidget->configuration()) {
m_configuration = pylswidget->configuration();
if (!changed) { // if only the settings configuration changed just send an update
const QVector<Client *> clients = LanguageClientManager::clientForSetting(this);
const QList<Client *> clients = LanguageClientManager::clientForSetting(this);
for (Client *client : clients)
client->updateConfiguration(configuration());
}