mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 09:36:08 +00:00
LibFileSystemAccessClient+Userland: Return file paths as ByteStrings
Where it was straightforward to do so, I've updated the users to also use ByteStrings for their file paths, but most of them have a temporary String::from_byte_string() call instead.
This commit is contained in:
parent
5a99a6afb4
commit
44ca55aaf8
Notes:
sideshowbarker
2024-07-18 02:47:59 +09:00
Author: https://github.com/AtkinsSJ
Commit: 44ca55aaf8
Pull-request: https://github.com/SerenityOS/serenity/pull/22912
23 changed files with 50 additions and 53 deletions
|
@ -776,7 +776,7 @@ void ImageEditor::save_project_as()
|
|||
GUI::MessageBox::show_error(window(), MUST(String::formatted("Could not save {}: {}", file.filename(), result.release_error())));
|
||||
return;
|
||||
}
|
||||
set_path(file.filename().to_byte_string());
|
||||
set_path(file.filename());
|
||||
set_loaded_from_image(false);
|
||||
set_unmodified();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue