diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG/SVGPathElement.h')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGPathElement.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGPathElement.h b/Userland/Libraries/LibWeb/SVG/SVGPathElement.h index 0e90900892..8fb31d51f0 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGPathElement.h +++ b/Userland/Libraries/LibWeb/SVG/SVGPathElement.h @@ -89,11 +89,9 @@ public: SVGPathElement(DOM::Document&, QualifiedName); virtual ~SVGPathElement() override = default; - virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override; - virtual void parse_attribute(const FlyString& name, const String& value) override; - Gfx::Path& get_path(); + virtual Gfx::Path& get_path() override; private: Vector<PathInstruction> m_instructions; |