summaryrefslogtreecommitdiff
path: root/Servers/WindowServer/WSClientConnection.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-12-02 09:58:25 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-02 11:11:05 +0100
commit4a37bec27c430b867143d986cd07f83111d3e018 (patch)
tree3eaa34d7815fc207507f25416813800d268f81e0 /Servers/WindowServer/WSClientConnection.h
parent5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (diff)
downloadserenity-4a37bec27c430b867143d986cd07f83111d3e018.zip
LibIPC: Rename base classes to IClientConnection and IServerConnection
This matches what we're already calling the server-side subclasses better, though we'll probably want to find some better names for the client-side classes eventually.
Diffstat (limited to 'Servers/WindowServer/WSClientConnection.h')
-rw-r--r--Servers/WindowServer/WSClientConnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/WindowServer/WSClientConnection.h b/Servers/WindowServer/WSClientConnection.h
index 8d757969d4..8c6444291f 100644
--- a/Servers/WindowServer/WSClientConnection.h
+++ b/Servers/WindowServer/WSClientConnection.h
@@ -15,7 +15,7 @@ class WSMenu;
class WSMenuBar;
class WSClientConnection final
- : public IPC::Server::ConnectionNG<WindowServerEndpoint>
+ : public IClientConnection<WindowServerEndpoint>
, public WindowServerEndpoint {
C_OBJECT(WSClientConnection)
public: