summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLInputElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLInputElement.cpp')
-rw-r--r--Libraries/LibWeb/HTML/HTMLInputElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLInputElement.cpp b/Libraries/LibWeb/HTML/HTMLInputElement.cpp
index 249329e056..bf721ed071 100644
--- a/Libraries/LibWeb/HTML/HTMLInputElement.cpp
+++ b/Libraries/LibWeb/HTML/HTMLInputElement.cpp
@@ -38,8 +38,8 @@
namespace Web::HTML {
-HTMLInputElement::HTMLInputElement(DOM::Document& document, const FlyString& tag_name)
- : HTMLElement(document, tag_name)
+HTMLInputElement::HTMLInputElement(DOM::Document& document, const QualifiedName& qualified_name)
+ : HTMLElement(document, qualified_name)
{
}