summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/SVG/SVGPathElement.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-26 19:37:56 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-26 20:05:15 +0200
commit11ff9d0f17bc0cd49a61b7c4cc66036584d6d30b (patch)
treeec880ff36492c94b7854e84226bf64c3611bb20a /Libraries/LibWeb/SVG/SVGPathElement.h
parent96d13f75cf2659cba8392db5469fdef1c831ceec (diff)
downloadserenity-11ff9d0f17bc0cd49a61b7c4cc66036584d6d30b.zip
LibWeb: Move DOM classes into the Web::DOM namespace
LibWeb keeps growing and the Web namespace is filling up fast. Let's put DOM stuff into Web::DOM, just like we already started doing with SVG stuff in Web::SVG.
Diffstat (limited to 'Libraries/LibWeb/SVG/SVGPathElement.h')
-rw-r--r--Libraries/LibWeb/SVG/SVGPathElement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/SVG/SVGPathElement.h b/Libraries/LibWeb/SVG/SVGPathElement.h
index 8aeed96559..898976b1dc 100644
--- a/Libraries/LibWeb/SVG/SVGPathElement.h
+++ b/Libraries/LibWeb/SVG/SVGPathElement.h
@@ -102,7 +102,7 @@ private:
class SVGPathElement final : public SVGGeometryElement {
public:
- SVGPathElement(Document&, const FlyString& tag_name);
+ SVGPathElement(DOM::Document&, const FlyString& tag_name);
virtual ~SVGPathElement() override = default;
virtual void parse_attribute(const FlyString& name, const String& value) override;