1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:57:45 +00:00

SpreadSheet: Use FileSystemAccessClient::try_* APIs

This commit is contained in:
Mustafa Quraish 2022-01-17 06:09:19 -05:00 committed by Andreas Kling
parent ca2c7dced5
commit bba32de857
5 changed files with 17 additions and 33 deletions

View file

@ -19,7 +19,7 @@ public:
Result<bool, String> save(StringView filename);
Result<bool, String> load(StringView filename);
Result<bool, String> open_file(int fd, StringView filename);
Result<bool, String> open_file(Core::File&);
const String& current_filename() const { return m_current_filename; }
bool set_filename(const String& filename);