1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer

This was done with CLion's automatic rename feature.
This commit is contained in:
Itamar 2022-02-25 12:27:37 +02:00 committed by Andreas Kling
parent 3a71748e5d
commit d88da82e28
26 changed files with 53 additions and 53 deletions

View file

@ -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)
{
}