mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
LibJS+LibWeb+Spreadsheet: Upcall visit_edges() via Base typedef
Let's use Base::visit_edges() when calling the base class, to prevent accidentally skipping over anyone in the inheritance chain.
This commit is contained in:
parent
19ee5e01ad
commit
d42d655853
16 changed files with 16 additions and 16 deletions
|
@ -150,7 +150,7 @@ void SheetGlobalObject::initialize_global_object()
|
|||
|
||||
void SheetGlobalObject::visit_edges(Visitor& visitor)
|
||||
{
|
||||
GlobalObject::visit_edges(visitor);
|
||||
Base::visit_edges(visitor);
|
||||
for (auto& it : m_sheet.cells()) {
|
||||
if (it.value->exception())
|
||||
visitor.visit(it.value->exception());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue