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

LibFileSystemAccessClient: Rename try_* functions to try_*_deprecated

These functions return the deprecated `Core::File` class, so let's mark
it as such to avoid possible confusion between future non try_*
functions which will use Core::Stream family classes and to possibly
grab someone's attention. :^)
This commit is contained in:
Karol Kosek 2022-12-17 00:58:13 +01:00 committed by Sam Atkins
parent e361025cfb
commit 247db3fdd0
22 changed files with 38 additions and 38 deletions

View file

@ -150,7 +150,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
save_as_action->activate();
return;
}
auto response = FileSystemAccessClient::Client::the().try_request_file(window, file_path, Core::OpenMode::Truncate | Core::OpenMode::WriteOnly);
auto response = FileSystemAccessClient::Client::the().try_request_file_deprecated(window, file_path, Core::OpenMode::Truncate | Core::OpenMode::WriteOnly);
if (response.is_error())
return;
@ -171,7 +171,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
return;
}
auto response = FileSystemAccessClient::Client::the().try_open_file(window);
auto response = FileSystemAccessClient::Client::the().try_open_file_deprecated(window);
if (response.is_error())
return;
@ -295,7 +295,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
editor->set_cursor(4, 28); // after "...widgets!"
update_title();
} else {
auto file = TRY(FileSystemAccessClient::Client::the().try_request_file_read_only_approved(window, path));
auto file = TRY(FileSystemAccessClient::Client::the().try_request_file_read_only_approved_deprecated(window, path));
file_path = path;
editor->set_text(file->read_all());
update_title();