diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-12-07 23:02:03 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-12-14 18:26:25 +0000 |
commit | 9ae97c8cb1f604ba06e61c5779e1a8a65c06f558 (patch) | |
tree | a3b4236e780d9746005f91a97554f49ef5598152 /Userland/Games | |
parent | c71fc0683f5b421bc994ff1b480c31680a6fc3fc (diff) | |
download | serenity-9ae97c8cb1f604ba06e61c5779e1a8a65c06f558.zip |
LibFileSystemAccessClient: Rename `try_save_file` =>
`try_save_file_deprecated`
This precedes the addition of a new api using `Core::Stream`
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/Chess/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp index 4ea167e4c0..5dfa1145fd 100644 --- a/Userland/Games/Chess/main.cpp +++ b/Userland/Games/Chess/main.cpp @@ -75,7 +75,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) dbgln("Imported PGN file from {}", result.value()->filename()); }))); TRY(game_menu->try_add_action(GUI::Action::create("&Export PGN...", { Mod_Ctrl, Key_S }, [&](auto&) { - auto result = FileSystemAccessClient::Client::the().try_save_file(window, "Untitled", "pgn"); + auto result = FileSystemAccessClient::Client::the().try_save_file_deprecated(window, "Untitled", "pgn"); if (result.is_error()) return; |