summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-07 10:27:02 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-07 10:27:02 +0100
commit7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (patch)
tree3dc7962c6f81dac63e0315883a2fff03dc78cd2b /Userland
parent6a3b12664a7ce85bef93497df70c0b96cfc509d0 (diff)
downloadserenity-7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea.zip
LibWeb: Move everything into the Web namespace
Diffstat (limited to 'Userland')
-rw-r--r--Userland/html.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/html.cpp b/Userland/html.cpp
index 76bbad5a43..71f1c7fc99 100644
--- a/Userland/html.cpp
+++ b/Userland/html.cpp
@@ -61,10 +61,10 @@ int main(int argc, char** argv)
}
String html = String::copy(f->read_all());
- auto document = parse_html_document(html);
+ auto document = Web::parse_html_document(html);
auto window = GUI::Window::construct();
- auto& widget = window->set_main_widget<HtmlView>();
+ auto& widget = window->set_main_widget<Web::HtmlView>();
widget.set_document(document);
if (!widget.document()->title().is_null())
window->set_title(String::format("%s - HTML", widget.document()->title().characters()));