diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 09:58:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 11:11:05 +0100 |
commit | 4a37bec27c430b867143d986cd07f83111d3e018 (patch) | |
tree | 3eaa34d7815fc207507f25416813800d268f81e0 /Servers/WindowServer/WSClientConnection.h | |
parent | 5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (diff) | |
download | serenity-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.h | 2 |
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: |