diff --git a/Userland/Libraries/LibDesktop/Launcher.cpp b/Userland/Libraries/LibDesktop/Launcher.cpp index 606827e6fa..62da78b5ac 100644 --- a/Userland/Libraries/LibDesktop/Launcher.cpp +++ b/Userland/Libraries/LibDesktop/Launcher.cpp @@ -33,20 +33,20 @@ auto Launcher::Details::from_details_str(const String& details_str) -> NonnullRe return details; } -class LaunchServerConnection final +class ConnectionToLaunchServer final : public IPC::ConnectionToServer , public LaunchClientEndpoint { - IPC_CLIENT_CONNECTION(LaunchServerConnection, "/tmp/portal/launch") + IPC_CLIENT_CONNECTION(ConnectionToLaunchServer, "/tmp/portal/launch") private: - LaunchServerConnection(NonnullOwnPtr socket) + ConnectionToLaunchServer(NonnullOwnPtr socket) : IPC::ConnectionToServer(*this, move(socket)) { } }; -static LaunchServerConnection& connection() +static ConnectionToLaunchServer& connection() { - static auto connection = LaunchServerConnection::try_create().release_value_but_fixme_should_propagate_errors(); + static auto connection = ConnectionToLaunchServer::try_create().release_value_but_fixme_should_propagate_errors(); return connection; }