mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +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
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <AK/Variant.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibAudio/ConnectionFromClient.h>
|
||||
#include <LibAudio/ConnectionToServer.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <LibCore/EventLoop.h>
|
||||
#include <LibCore/File.h>
|
||||
|
@ -28,7 +28,7 @@ enum AudioVariable : u32 {
|
|||
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
{
|
||||
Core::EventLoop loop;
|
||||
auto audio_client = TRY(Audio::ConnectionFromClient::try_create());
|
||||
auto audio_client = TRY(Audio::ConnectionToServer::try_create());
|
||||
audio_client->async_pause_playback();
|
||||
|
||||
String command = String::empty();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue