diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet/Cell.h')
-rw-r--r-- | Userland/Applications/Spreadsheet/Cell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Spreadsheet/Cell.h b/Userland/Applications/Spreadsheet/Cell.h index d2d3541c1a..1e8830084e 100644 --- a/Userland/Applications/Spreadsheet/Cell.h +++ b/Userland/Applications/Spreadsheet/Cell.h @@ -79,8 +79,8 @@ struct Cell : public Weakable<Cell> { m_conditional_formats = move(fmts); } - String typed_display() const; - JS::Value typed_js_data() const; + JS::ThrowCompletionOr<String> typed_display() const; + JS::ThrowCompletionOr<JS::Value> typed_js_data() const; const CellType& type() const; const CellTypeMetadata& type_metadata() const { return m_type_metadata; } |