summaryrefslogtreecommitdiff
path: root/DevTools/HackStudio/Editor.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-28 18:20:36 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-28 18:55:48 +0200
commitc46439f24063a5531f1f7562cf6d733cdbabdb51 (patch)
tree859ce620cbb59fd0d18700a524631dcbe6dd9eea /DevTools/HackStudio/Editor.cpp
parentebd2e7d9f569d284effeeb53a5589318391617b8 (diff)
downloadserenity-c46439f24063a5531f1f7562cf6d733cdbabdb51.zip
LibWeb: Move HTML classes into the Web::HTML namespace
Diffstat (limited to 'DevTools/HackStudio/Editor.cpp')
-rw-r--r--DevTools/HackStudio/Editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/HackStudio/Editor.cpp b/DevTools/HackStudio/Editor.cpp
index 18638564cb..c6b07ca749 100644
--- a/DevTools/HackStudio/Editor.cpp
+++ b/DevTools/HackStudio/Editor.cpp
@@ -175,7 +175,7 @@ void Editor::show_documentation_tooltip_if_available(const String& hovered_token
m_documentation_page_view->load_html(html_text, {});
if (auto* document = m_documentation_page_view->document()) {
- const_cast<Web::HTMLElement*>(document->body())->set_attribute(Web::HTML::AttributeNames::style, "background-color: #dac7b5;");
+ const_cast<Web::HTML::HTMLElement*>(document->body())->set_attribute(Web::HTML::AttributeNames::style, "background-color: #dac7b5;");
}
m_documentation_tooltip_window->move_to(screen_location.translated(4, 4));