diff options
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLDialogElement.cpp')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLDialogElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLDialogElement.cpp b/Libraries/LibWeb/HTML/HTMLDialogElement.cpp index 78c3774f1a..7437ca2261 100644 --- a/Libraries/LibWeb/HTML/HTMLDialogElement.cpp +++ b/Libraries/LibWeb/HTML/HTMLDialogElement.cpp @@ -28,8 +28,8 @@ namespace Web::HTML { -HTMLDialogElement::HTMLDialogElement(DOM::Document& document, const FlyString& tag_name) - : HTMLElement(document, tag_name) +HTMLDialogElement::HTMLDialogElement(DOM::Document& document, const QualifiedName& qualified_name) + : HTMLElement(document, qualified_name) { } |