1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibWeb/DOM: Rename Node::{paint => paintable}_box()

It returns a PaintableBox, not a 'PaintBox'.
This commit is contained in:
Linus Groh 2023-04-20 16:01:16 +01:00 committed by Andreas Kling
parent 754e458d0a
commit d58b671ff6
8 changed files with 25 additions and 25 deletions

View file

@ -1407,7 +1407,7 @@ Painting::Paintable const* Node::paintable() const
return layout_node()->paintable();
}
Painting::PaintableBox const* Node::paint_box() const
Painting::PaintableBox const* Node::paintable_box() const
{
if (!layout_node())
return nullptr;