1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:47:46 +00:00

asctl: Stop using DeprecatedString

This commit is contained in:
Sam Atkins 2023-03-10 14:52:02 +00:00 committed by Andreas Kling
parent 8377db260f
commit 916e7a5a3f

View file

@ -30,7 +30,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto audio_client = TRY(Audio::ConnectionToServer::try_create()); auto audio_client = TRY(Audio::ConnectionToServer::try_create());
audio_client->async_pause_playback(); audio_client->async_pause_playback();
DeprecatedString command = DeprecatedString::empty(); StringView command;
Vector<StringView> command_arguments; Vector<StringView> command_arguments;
bool human_mode = false; bool human_mode = false;