summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp
index 7437ca2261..adfd7f82b6 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp
+++ b/Userland/Libraries/LibWeb/HTML/HTMLDialogElement.cpp
@@ -28,8 +28,8 @@
namespace Web::HTML {
-HTMLDialogElement::HTMLDialogElement(DOM::Document& document, const QualifiedName& qualified_name)
- : HTMLElement(document, qualified_name)
+HTMLDialogElement::HTMLDialogElement(DOM::Document& document, QualifiedName qualified_name)
+ : HTMLElement(document, move(qualified_name))
{
}