summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutSVG.cpp
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/Layout/LayoutSVG.cpp
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/Layout/LayoutSVG.cpp')
-rw-r--r--Libraries/LibWeb/Layout/LayoutSVG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutSVG.cpp b/Libraries/LibWeb/Layout/LayoutSVG.cpp
index 455151aaba..1d3228646d 100644
--- a/Libraries/LibWeb/Layout/LayoutSVG.cpp
+++ b/Libraries/LibWeb/Layout/LayoutSVG.cpp
@@ -31,7 +31,7 @@
namespace Web {
-LayoutSVG::LayoutSVG(Document& document, const SVG::SVGSVGElement& element, NonnullRefPtr<StyleProperties> style)
+LayoutSVG::LayoutSVG(DOM::Document& document, const SVG::SVGSVGElement& element, NonnullRefPtr<StyleProperties> style)
: LayoutReplaced(document, element, move(style))
{
}