diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-07-17 11:31:01 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-19 11:17:45 +0100 |
commit | 3f59356c79a044e7f2c49a7e456f8309d47508fd (patch) | |
tree | 86a7b701f55a40c97be5d7b02a545aa91c67d076 /Userland/Applications/SoundPlayer/Player.cpp | |
parent | 70846d701cc117176eca150c54649639ec5e8337 (diff) | |
download | serenity-3f59356c79a044e7f2c49a7e456f8309d47508fd.zip |
LibAudio: Rename ConnectionFromClient to ConnectionToServer
The automatic nomenclature change for IPC sockets got this one wrong.
Diffstat (limited to 'Userland/Applications/SoundPlayer/Player.cpp')
-rw-r--r-- | Userland/Applications/SoundPlayer/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SoundPlayer/Player.cpp b/Userland/Applications/SoundPlayer/Player.cpp index 384626ac5b..5238fbb2b0 100644 --- a/Userland/Applications/SoundPlayer/Player.cpp +++ b/Userland/Applications/SoundPlayer/Player.cpp @@ -7,7 +7,7 @@ #include "Player.h" -Player::Player(Audio::ConnectionFromClient& audio_client_connection) +Player::Player(Audio::ConnectionToServer& audio_client_connection) : m_audio_client_connection(audio_client_connection) , m_playback_manager(audio_client_connection) { |