1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

HackStudio: Rename HackStudio::ServerConnection=>ConnectionToServer

Also renames ServerConnectionWrapper=>ConnectionToServerWrapper
and ServerConnectionInstances=>ConnectionToServerInstances

This was done with CLion's automatic rename feature.
This commit is contained in:
Itamar 2022-02-25 13:04:59 +02:00 committed by Andreas Kling
parent 935d023967
commit 75ee77f8a1
5 changed files with 64 additions and 64 deletions

View file

@ -658,10 +658,10 @@ void Editor::set_language_client_for(const CodeDocument& document)
return;
if (document.language() == Language::Cpp)
m_language_client = get_language_client<LanguageClients::Cpp::ServerConnection>(project().root_path());
m_language_client = get_language_client<LanguageClients::Cpp::ConnectionToServer>(project().root_path());
if (document.language() == Language::Shell)
m_language_client = get_language_client<LanguageClients::Shell::ServerConnection>(project().root_path());
m_language_client = get_language_client<LanguageClients::Shell::ConnectionToServer>(project().root_path());
if (m_language_client) {
m_language_client->on_tokens_info_result = [this](Vector<GUI::AutocompleteProvider::TokenInfo> const& tokens_info) {