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

Spreadsheet: Port ExportDialog to Core::Stream

This commit is contained in:
Karol Kosek 2022-12-26 23:55:00 +01:00 committed by Ali Mohammad Pur
parent 3a8450ae11
commit e9d73a6256
3 changed files with 8 additions and 13 deletions

View file

@ -54,7 +54,7 @@ private:
};
struct ExportDialog {
static ErrorOr<void> make_and_run_for(StringView mime, Core::File& file, Workbook&);
static ErrorOr<void> make_and_run_for(StringView mime, NonnullOwnPtr<Core::Stream::File>, DeprecatedString filename, Workbook&);
};
}