diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-26 20:01:35 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-26 20:05:15 +0200 |
commit | 1f008c95b6d80adaaf3cf54cf89019c54b70e17f (patch) | |
tree | bbb1a7dc68d5cd6fa83bf56e98b94607a7fe766f /Libraries/LibWeb/SVG/SVGSVGElement.h | |
parent | 3e389f4cdcffbe68aaa0571af532d6668be32a07 (diff) | |
download | serenity-1f008c95b6d80adaaf3cf54cf89019c54b70e17f.zip |
LibWeb: Move CSS classes into the Web::CSS namespace
Diffstat (limited to 'Libraries/LibWeb/SVG/SVGSVGElement.h')
-rw-r--r-- | Libraries/LibWeb/SVG/SVGSVGElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/SVG/SVGSVGElement.h b/Libraries/LibWeb/SVG/SVGSVGElement.h index 1540aa3757..f29b0028f0 100644 --- a/Libraries/LibWeb/SVG/SVGSVGElement.h +++ b/Libraries/LibWeb/SVG/SVGSVGElement.h @@ -35,7 +35,7 @@ class SVGSVGElement final : public SVGGraphicsElement { public: SVGSVGElement(DOM::Document&, const FlyString& tag_name); - virtual RefPtr<LayoutNode> create_layout_node(const StyleProperties* parent_style) override; + virtual RefPtr<LayoutNode> create_layout_node(const CSS::StyleProperties* parent_style) override; const RefPtr<Gfx::Bitmap> bitmap() const { return m_bitmap; } bool create_bitmap_as_top_level_svg_element(); |