mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:37:36 +00:00
LibAudio: Rename ConnectionFromClient to ConnectionToServer
The automatic nomenclature change for IPC sockets got this one wrong.
This commit is contained in:
parent
70846d701c
commit
3f59356c79
17 changed files with 47 additions and 47 deletions
|
@ -31,7 +31,7 @@ public:
|
|||
Shuffling,
|
||||
};
|
||||
|
||||
explicit Player(Audio::ConnectionFromClient& audio_client_connection);
|
||||
explicit Player(Audio::ConnectionToServer& audio_client_connection);
|
||||
virtual ~Player() = default;
|
||||
|
||||
void play_file_path(String const& path);
|
||||
|
@ -91,7 +91,7 @@ private:
|
|||
LoopMode m_loop_mode { LoopMode::None };
|
||||
ShuffleMode m_shuffle_mode { ShuffleMode::None };
|
||||
|
||||
Audio::ConnectionFromClient& m_audio_client_connection;
|
||||
Audio::ConnectionToServer& m_audio_client_connection;
|
||||
PlaybackManager m_playback_manager;
|
||||
|
||||
String m_loaded_filename;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue