1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

Spreadsheet: Use ByteString for file paths

This commit is contained in:
Sam Atkins 2024-01-23 16:26:43 +00:00 committed by Sam Atkins
parent 44ca55aaf8
commit 90240c0e02
7 changed files with 26 additions and 26 deletions

View file

@ -55,7 +55,7 @@ private:
};
struct ImportDialog {
static ErrorOr<Vector<NonnullRefPtr<Sheet>>, ByteString> make_and_run_for(GUI::Window& parent, StringView mime, String const& filename, Core::File& file, Workbook&);
static ErrorOr<Vector<NonnullRefPtr<Sheet>>, ByteString> make_and_run_for(GUI::Window& parent, StringView mime, ByteString const& filename, Core::File& file, Workbook&);
};
}