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/HTMLOptionElement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h') diff --git a/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h b/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h index e2bead49f6..38db64770e 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h @@ -34,7 +34,7 @@ class HTMLOptionElement final : public HTMLElement { public: using WrapperType = Bindings::HTMLOptionElementWrapper; - HTMLOptionElement(DOM::Document&, const QualifiedName& qualified_name); + HTMLOptionElement(DOM::Document&, QualifiedName); virtual ~HTMLOptionElement() override; }; -- cgit v1.2.3