diff --git a/Userland/Libraries/LibWeb/CSS/CSSImportRule.h b/Userland/Libraries/LibWeb/CSS/CSSImportRule.h index e097f80888..678f704653 100644 --- a/Userland/Libraries/LibWeb/CSS/CSSImportRule.h +++ b/Userland/Libraries/LibWeb/CSS/CSSImportRule.h @@ -48,7 +48,7 @@ public: bool has_import_result() const { return !m_style_sheet.is_null(); } RefPtr loaded_style_sheet() { return m_style_sheet; } const RefPtr loaded_style_sheet() const { return m_style_sheet; } - void set_style_sheet(const RefPtr& style_sheet) { m_style_sheet = style_sheet; } + void set_style_sheet(const RefPtr& style_sheet) { m_style_sheet = style_sheet; } virtual StringView class_name() const { return "CSSImportRule"; }; virtual Type type() const { return Type::Import; };