diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-17 19:46:06 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-17 20:16:44 +0200 |
commit | 9c8dd836fc079666f3dfa92ae23c31d7c46bd769 (patch) | |
tree | 3346e43c9a69aa71f592b5da26df6212927dfd95 /Libraries/LibAudio/AClientConnection.cpp | |
parent | 2177594c960976d82c5eb6fac3f90f3345d37854 (diff) | |
download | serenity-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 'Libraries/LibAudio/AClientConnection.cpp')
-rw-r--r-- | Libraries/LibAudio/AClientConnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibAudio/AClientConnection.cpp b/Libraries/LibAudio/AClientConnection.cpp index 7f5da5f937..1b52acc63d 100644 --- a/Libraries/LibAudio/AClientConnection.cpp +++ b/Libraries/LibAudio/AClientConnection.cpp @@ -3,7 +3,7 @@ #include "AClientConnection.h" AClientConnection::AClientConnection() - : CIPCClientSideConnection("/tmp/asportal") + : Connection("/tmp/asportal") { } |