From 330c3fcb598bb626a2c8673e4c29daaa19e1bedc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 7 Feb 2021 11:20:15 +0100 Subject: LibWeb: Use move semantics for QualifiedName more often --- Userland/Libraries/LibWeb/HTML/HTMLBRElement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibWeb/HTML/HTMLBRElement.h') diff --git a/Userland/Libraries/LibWeb/HTML/HTMLBRElement.h b/Userland/Libraries/LibWeb/HTML/HTMLBRElement.h index 5e453c6ecb..747cc7912a 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLBRElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLBRElement.h @@ -34,7 +34,7 @@ class HTMLBRElement final : public HTMLElement { public: using WrapperType = Bindings::HTMLBRElementWrapper; - HTMLBRElement(DOM::Document&, const QualifiedName& qualified_name); + HTMLBRElement(DOM::Document&, QualifiedName); virtual ~HTMLBRElement() override; virtual RefPtr create_layout_node() override; -- cgit v1.2.3