diff options
Diffstat (limited to 'Userland/Applications/Spreadsheet/Spreadsheet.h')
-rw-r--r-- | Userland/Applications/Spreadsheet/Spreadsheet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/Spreadsheet/Spreadsheet.h b/Userland/Applications/Spreadsheet/Spreadsheet.h index 69248dff8b..213131185d 100644 --- a/Userland/Applications/Spreadsheet/Spreadsheet.h +++ b/Userland/Applications/Spreadsheet/Spreadsheet.h @@ -147,6 +147,8 @@ private: Workbook& m_workbook; mutable SheetGlobalObject* m_global_object; + NonnullOwnPtr<JS::Interpreter> m_interpreter; + Cell* m_current_cell_being_evaluated { nullptr }; HashTable<Cell*> m_visited_cells_in_update; |