diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet/Workbook.h')
-rw-r--r-- | Userland/Applications/Spreadsheet/Workbook.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/Workbook.h b/Userland/Applications/Spreadsheet/Workbook.h index b1b28beee9..656d00fc96 100644 --- a/Userland/Applications/Spreadsheet/Workbook.h +++ b/Userland/Applications/Spreadsheet/Workbook.h @@ -17,8 +17,8 @@ class Workbook { public: Workbook(NonnullRefPtrVector<Sheet>&& sheets, GUI::Window& parent_window); - Result<bool, String> save(StringView filename); Result<bool, String> open_file(Core::File&); + Result<bool, String> write_to_file(Core::File&); String const& current_filename() const { return m_current_filename; } bool set_filename(String const& filename); |