mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:17:34 +00:00
LibFileSystemAccessClient: Rename try_save_file
=>
`try_save_file_deprecated` This precedes the addition of a new api using `Core::Stream`
This commit is contained in:
parent
c71fc0683f
commit
9ae97c8cb1
12 changed files with 16 additions and 16 deletions
|
@ -155,7 +155,7 @@ SpreadsheetWidget::SpreadsheetWidget(GUI::Window& parent_window, NonnullRefPtrVe
|
|||
|
||||
m_save_as_action = GUI::CommonActions::make_save_as_action([&](auto&) {
|
||||
DeprecatedString name = "workbook";
|
||||
auto response = FileSystemAccessClient::Client::the().try_save_file(window(), name, "sheets");
|
||||
auto response = FileSystemAccessClient::Client::the().try_save_file_deprecated(window(), name, "sheets");
|
||||
if (response.is_error())
|
||||
return;
|
||||
save(*response.value());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue