diff options
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLBRElement.cpp')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLBRElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLBRElement.cpp b/Libraries/LibWeb/HTML/HTMLBRElement.cpp index ac2c4125a4..2772f20ddd 100644 --- a/Libraries/LibWeb/HTML/HTMLBRElement.cpp +++ b/Libraries/LibWeb/HTML/HTMLBRElement.cpp @@ -38,7 +38,7 @@ HTMLBRElement::~HTMLBRElement() { } -RefPtr<LayoutNode> HTMLBRElement::create_layout_node(const StyleProperties*) +RefPtr<LayoutNode> HTMLBRElement::create_layout_node(const CSS::StyleProperties*) { return adopt(*new LayoutBreak(document(), *this)); } |