mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
LibWeb: Use move semantics for QualifiedName more often
This commit is contained in:
@@ -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))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user