diff options
author | Itamar <itamar8910@gmail.com> | 2022-02-25 12:27:37 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-25 22:35:12 +0100 |
commit | d88da82e281e041c24d5c61194e7646926341610 (patch) | |
tree | a3ab109b168d5356526b2671788cbfee776495c7 /Userland/Libraries/LibGUI/Notification.cpp | |
parent | 3a71748e5d16a244c21aaf28ca3c4220c47f484e (diff) | |
download | serenity-d88da82e281e041c24d5c61194e7646926341610.zip |
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
Diffstat (limited to 'Userland/Libraries/LibGUI/Notification.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/Notification.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/Notification.cpp b/Userland/Libraries/LibGUI/Notification.cpp index 0f7e4207cb..90bbd928bf 100644 --- a/Userland/Libraries/LibGUI/Notification.cpp +++ b/Userland/Libraries/LibGUI/Notification.cpp @@ -5,14 +5,14 @@ */ #include <LibGUI/Notification.h> -#include <LibIPC/ServerConnection.h> +#include <LibIPC/ConnectionToServer.h> #include <NotificationServer/NotificationClientEndpoint.h> #include <NotificationServer/NotificationServerEndpoint.h> namespace GUI { class NotificationServerConnection final - : public IPC::ServerConnection<NotificationClientEndpoint, NotificationServerEndpoint> + : public IPC::ConnectionToServer<NotificationClientEndpoint, NotificationServerEndpoint> , public NotificationClientEndpoint { IPC_CLIENT_CONNECTION(NotificationServerConnection, "/tmp/portal/notify") @@ -26,7 +26,7 @@ public: private: explicit NotificationServerConnection(NonnullOwnPtr<Core::Stream::LocalSocket> socket, Notification* notification) - : IPC::ServerConnection<NotificationClientEndpoint, NotificationServerEndpoint>(*this, move(socket)) + : IPC::ConnectionToServer<NotificationClientEndpoint, NotificationServerEndpoint>(*this, move(socket)) , m_notification(notification) { } |