forked from qt-creator/qt-creator
LSP: rename BaseClient -> Client
Since BaseClient isn't part of an inheritance hirarchie any more the Base doesn't make sense now. Change-Id: I69200b19a22e5a04079e5289a02234af4f56a1bd Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
#include "languageclientsettings.h"
|
||||
|
||||
#include "baseclient.h"
|
||||
#include "client.h"
|
||||
#include "languageclientmanager.h"
|
||||
#include "languageclient_global.h"
|
||||
#include "languageclientinterface.h"
|
||||
@@ -398,11 +398,11 @@ bool BaseSettings::isValid() const
|
||||
return !m_name.isEmpty();
|
||||
}
|
||||
|
||||
BaseClient *BaseSettings::createClient() const
|
||||
Client *BaseSettings::createClient() const
|
||||
{
|
||||
BaseClientInterface *interface = createInterface();
|
||||
if (QTC_GUARD(interface)) {
|
||||
auto *client = new BaseClient(interface);
|
||||
auto *client = new Client(interface);
|
||||
client->setName(m_name);
|
||||
client->setSupportedLanguage(m_languageFilter);
|
||||
return client;
|
||||
|
||||
Reference in New Issue
Block a user