summaryrefslogtreecommitdiff
path: root/Applications/Spreadsheet/Workbook.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/Spreadsheet/Workbook.cpp')
-rw-r--r--Applications/Spreadsheet/Workbook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Spreadsheet/Workbook.cpp b/Applications/Spreadsheet/Workbook.cpp
index 252bb1d93e..8fbe19dc1f 100644
--- a/Applications/Spreadsheet/Workbook.cpp
+++ b/Applications/Spreadsheet/Workbook.cpp
@@ -48,7 +48,7 @@ static JS::VM& global_vm()
Workbook::Workbook(NonnullRefPtrVector<Sheet>&& sheets)
: m_sheets(move(sheets))
, m_interpreter(JS::Interpreter::create<JS::GlobalObject>(global_vm()))
- , m_interpreter_scope(JS::VM::InterpreterScope(interpreter()))
+ , m_interpreter_scope(JS::VM::InterpreterExecutionScope(interpreter()))
{
m_workbook_object = interpreter().heap().allocate<WorkbookObject>(global_object(), *this);
global_object().put("workbook", workbook_object());