diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet/main.cpp')
-rw-r--r-- | Userland/Applications/Spreadsheet/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/main.cpp b/Userland/Applications/Spreadsheet/main.cpp index 7605622cf3..090d2ef8a9 100644 --- a/Userland/Applications/Spreadsheet/main.cpp +++ b/Userland/Applications/Spreadsheet/main.cpp @@ -70,7 +70,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) window->show(); if (filename) { - auto file = TRY(FileSystemAccessClient::Client::the().try_request_file_read_only_approved(window, filename)); + auto file = TRY(FileSystemAccessClient::Client::the().try_request_file_read_only_approved_deprecated(window, filename)); spreadsheet_widget->load_file(file); } |