diff options
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGSVGElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGSVGElement.h b/Userland/Libraries/LibWeb/SVG/SVGSVGElement.h index 7d878760e0..f69ec9f9c5 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGSVGElement.h +++ b/Userland/Libraries/LibWeb/SVG/SVGSVGElement.h @@ -25,7 +25,7 @@ public: virtual bool requires_svg_container() const override { return false; } virtual bool is_svg_container() const override { return true; } - Optional<ViewBox> const& view_box() { return m_view_box; } + Optional<ViewBox> const& view_box() const { return m_view_box; } private: virtual void parse_attribute(FlyString const& name, String const& value) override; |