From 3a71748e5d16a244c21aaf28ca3c4220c47f484e Mon Sep 17 00:00:00 2001 From: Itamar Date: Fri, 25 Feb 2022 12:18:30 +0200 Subject: Userland: Rename IPC ClientConnection => ConnectionFromClient This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/' --- Userland/Services/WindowServer/Menu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Userland/Services/WindowServer/Menu.cpp') diff --git a/Userland/Services/WindowServer/Menu.cpp b/Userland/Services/WindowServer/Menu.cpp index 70a6f74b85..63af0b4130 100644 --- a/Userland/Services/WindowServer/Menu.cpp +++ b/Userland/Services/WindowServer/Menu.cpp @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include namespace WindowServer { @@ -37,7 +37,7 @@ u32 find_ampersand_shortcut_character(StringView string) return 0; } -Menu::Menu(ClientConnection* client, int menu_id, String name) +Menu::Menu(ConnectionFromClient* client, int menu_id, String name) : Core::Object(client) , m_client(client) , m_menu_id(menu_id) -- cgit v1.2.3