diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp b/Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp index febe538e58..22f8898f5e 100644 --- a/Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp +++ b/Userland/Libraries/LibWeb/Painting/SVGPaintable.cpp @@ -10,18 +10,18 @@ namespace Web::Painting { SVGPaintable::SVGPaintable(Layout::SVGBox const& layout_box) - : Paintable(layout_box) + : PaintableBox(layout_box) { } Layout::SVGBox const& SVGPaintable::layout_box() const { - return static_cast<Layout::SVGBox const&>(m_layout_box); + return static_cast<Layout::SVGBox const&>(layout_node()); } void SVGPaintable::before_children_paint(PaintContext& context, PaintPhase phase) const { - Paintable::before_children_paint(context, phase); + PaintableBox::before_children_paint(context, phase); if (phase != PaintPhase::Foreground) return; context.svg_context().save(); @@ -29,7 +29,7 @@ void SVGPaintable::before_children_paint(PaintContext& context, PaintPhase phase void SVGPaintable::after_children_paint(PaintContext& context, PaintPhase phase) const { - Paintable::after_children_paint(context, phase); + PaintableBox::after_children_paint(context, phase); if (phase != PaintPhase::Foreground) return; context.svg_context().restore(); |