LibFSAC+Userland: Pass options for FSAC::open_file() using a struct

It was rather inconvenient having to specify all arguments if you wanted
to modify only the last one.
This commit is contained in:
Karol Kosek 2023-05-28 13:38:15 +02:00 committed by Sam Atkins
commit 27011cf55d
Notes: sideshowbarker 2024-07-17 04:01:41 +09:00
10 changed files with 34 additions and 16 deletions

View file

@ -121,7 +121,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
// Actions
auto open_action = GUI::CommonActions::make_open_action(
[&](auto&) {
auto result = FileSystemAccessClient::Client::the().open_file(window, "Open Image");
auto result = FileSystemAccessClient::Client::the().open_file(window, { .window_title = "Open Image"sv });
if (result.is_error())
return;