LibWeb: Add const versions of SVGBox::dom_node() and friends

This commit is contained in:
Sam Atkins 2022-02-11 12:27:22 +00:00 committed by Andreas Kling
commit 49fe232bc7
Notes: sideshowbarker 2024-07-17 23:07:41 +09:00
3 changed files with 3 additions and 0 deletions

View file

@ -17,6 +17,7 @@ public:
virtual ~SVGPathBox() override = default;
SVG::SVGPathElement& dom_node() { return verify_cast<SVG::SVGPathElement>(SVGGraphicsBox::dom_node()); }
SVG::SVGPathElement const& dom_node() const { return verify_cast<SVG::SVGPathElement>(SVGGraphicsBox::dom_node()); }
virtual void paint(PaintContext& context, PaintPhase phase) override;