1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:17:44 +00:00

Spreadsheet: Allow importing sheets into an existing workbook

This commit is contained in:
Ali Mohammad Pur 2022-06-25 22:06:18 +04:30 committed by Linus Groh
parent 135683795b
commit 64ef808aeb
4 changed files with 50 additions and 0 deletions

View file

@ -20,6 +20,8 @@ public:
Result<bool, String> open_file(Core::File&);
Result<bool, String> write_to_file(Core::File&);
Result<bool, String> import_file(Core::File&);
String const& current_filename() const { return m_current_filename; }
bool set_filename(String const& filename);
bool dirty() { return m_dirty; }