mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
LibWeb/Layout: Rename Box::{paint => paintable}_box()
It returns a PaintableBox, not a 'PaintBox'.
This commit is contained in:
parent
ec37b55777
commit
754e458d0a
20 changed files with 50 additions and 50 deletions
|
@ -1413,7 +1413,7 @@ Painting::PaintableBox const* Node::paint_box() const
|
|||
return nullptr;
|
||||
if (!layout_node()->is_box())
|
||||
return nullptr;
|
||||
return static_cast<Layout::Box const&>(*layout_node()).paint_box();
|
||||
return static_cast<Layout::Box const&>(*layout_node()).paintable_box();
|
||||
}
|
||||
|
||||
// https://dom.spec.whatwg.org/#queue-a-mutation-record
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue