summaryrefslogtreecommitdiff
path: root/Servers/AudioServer/ASClientConnection.cpp
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-07-17 19:46:06 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-17 20:16:44 +0200
commit9c8dd836fc079666f3dfa92ae23c31d7c46bd769 (patch)
tree3346e43c9a69aa71f592b5da26df6212927dfd95 /Servers/AudioServer/ASClientConnection.cpp
parent2177594c960976d82c5eb6fac3f90f3345d37854 (diff)
downloadserenity-9c8dd836fc079666f3dfa92ae23c31d7c46bd769.zip
Rename new IPC headers & classes
Sticking these in a namespace allows us to use a more generic ("Connection") term without clashing, which is way easier to understand than to try to come up with unique names for both.
Diffstat (limited to 'Servers/AudioServer/ASClientConnection.cpp')
-rw-r--r--Servers/AudioServer/ASClientConnection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/AudioServer/ASClientConnection.cpp b/Servers/AudioServer/ASClientConnection.cpp
index d34de74eaa..acb467ddbc 100644
--- a/Servers/AudioServer/ASClientConnection.cpp
+++ b/Servers/AudioServer/ASClientConnection.cpp
@@ -14,7 +14,7 @@
#include <stdio.h>
ASClientConnection::ASClientConnection(int fd, int client_id, ASMixer& mixer)
- : CIPCServerSideClient(fd, client_id)
+ : Connection(fd, client_id)
, m_mixer(mixer)
{
}