summaryrefslogtreecommitdiff
path: root/Servers/WindowServer
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-05 19:57:18 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-05 19:57:18 +0100
commitd264e8fcc599204aa5f8ee9aa00d52ec53b7215b (patch)
tree5925a9f8df78404c8583a8f22c33dfe5d7294d13 /Servers/WindowServer
parenta894a799c3e1eb203b363dd79abfea82dd3c666d (diff)
downloadserenity-d264e8fcc599204aa5f8ee9aa00d52ec53b7215b.zip
LibIPC: Put all classes in the IPC namespace and remove the leading I
Diffstat (limited to 'Servers/WindowServer')
-rw-r--r--Servers/WindowServer/WSClientConnection.cpp2
-rw-r--r--Servers/WindowServer/WSClientConnection.h2
-rw-r--r--Servers/WindowServer/WSEventLoop.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/Servers/WindowServer/WSClientConnection.cpp b/Servers/WindowServer/WSClientConnection.cpp
index 7185d3ab9e..785c1b7e54 100644
--- a/Servers/WindowServer/WSClientConnection.cpp
+++ b/Servers/WindowServer/WSClientConnection.cpp
@@ -66,7 +66,7 @@ WSClientConnection* WSClientConnection::from_client_id(int client_id)
}
WSClientConnection::WSClientConnection(Core::LocalSocket& client_socket, int client_id)
- : IClientConnection(*this, client_socket, client_id)
+ : IPC::ClientConnection<WindowServerEndpoint>(*this, client_socket, client_id)
{
if (!s_connections)
s_connections = new HashMap<int, NonnullRefPtr<WSClientConnection>>;
diff --git a/Servers/WindowServer/WSClientConnection.h b/Servers/WindowServer/WSClientConnection.h
index 3f871760fc..d9eae8479d 100644
--- a/Servers/WindowServer/WSClientConnection.h
+++ b/Servers/WindowServer/WSClientConnection.h
@@ -41,7 +41,7 @@ class WSMenu;
class WSMenuBar;
class WSClientConnection final
- : public IClientConnection<WindowServerEndpoint>
+ : public IPC::ClientConnection<WindowServerEndpoint>
, public WindowServerEndpoint {
C_OBJECT(WSClientConnection)
public:
diff --git a/Servers/WindowServer/WSEventLoop.cpp b/Servers/WindowServer/WSEventLoop.cpp
index 3c9d10e125..93358b1718 100644
--- a/Servers/WindowServer/WSEventLoop.cpp
+++ b/Servers/WindowServer/WSEventLoop.cpp
@@ -63,7 +63,7 @@ WSEventLoop::WSEventLoop()
}
static int s_next_client_id = 0;
int client_id = ++s_next_client_id;
- new_client_connection<WSClientConnection>(*client_socket, client_id);
+ IPC::new_client_connection<WSClientConnection>(*client_socket, client_id);
};
ASSERT(m_keyboard_fd >= 0);