summaryrefslogtreecommitdiff
path: root/DevTools/HackStudio
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-07 10:32:51 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-07 10:32:51 +0100
commit830a57c6b23430c749395811761252d1999f3559 (patch)
tree0bccfa6bc0ec8a39af0dab20633257df3384a4b3 /DevTools/HackStudio
parent7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (diff)
downloadserenity-830a57c6b23430c749395811761252d1999f3559.zip
LibWeb: Rename directory LibHTML => LibWeb
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^)
Diffstat (limited to 'DevTools/HackStudio')
-rw-r--r--DevTools/HackStudio/Editor.cpp12
-rw-r--r--DevTools/HackStudio/Editor.h2
-rw-r--r--DevTools/HackStudio/Makefile2
3 files changed, 8 insertions, 8 deletions
diff --git a/DevTools/HackStudio/Editor.cpp b/DevTools/HackStudio/Editor.cpp
index b2a725c5ec..9cecd1b330 100644
--- a/DevTools/HackStudio/Editor.cpp
+++ b/DevTools/HackStudio/Editor.cpp
@@ -34,11 +34,11 @@
#include <LibGUI/Painter.h>
#include <LibGUI/ScrollBar.h>
#include <LibGUI/Window.h>
-#include <LibHTML/DOM/ElementFactory.h>
-#include <LibHTML/DOM/HTMLHeadElement.h>
-#include <LibHTML/DOM/Text.h>
-#include <LibHTML/HtmlView.h>
-#include <LibHTML/Parser/HTMLParser.h>
+#include <LibWeb/DOM/ElementFactory.h>
+#include <LibWeb/DOM/HTMLHeadElement.h>
+#include <LibWeb/DOM/Text.h>
+#include <LibWeb/HtmlView.h>
+#include <LibWeb/Parser/HTMLParser.h>
#include <LibMarkdown/MDDocument.h>
//#define EDITOR_DEBUG
@@ -151,7 +151,7 @@ void Editor::show_documentation_tooltip_if_available(const String& hovered_token
return;
}
- // FIXME: LibHTML needs a friendlier DOM manipulation API. Something like innerHTML :^)
+ // FIXME: LibWeb needs a friendlier DOM manipulation API. Something like innerHTML :^)
auto style_element = create_element(*html_document, "style");
style_element->append_child(adopt(*new Web::Text(*html_document, "body { background-color: #dac7b5; }")));
diff --git a/DevTools/HackStudio/Editor.h b/DevTools/HackStudio/Editor.h
index 3df2f8816f..f4096cd126 100644
--- a/DevTools/HackStudio/Editor.h
+++ b/DevTools/HackStudio/Editor.h
@@ -27,7 +27,7 @@
#pragma once
#include <LibGUI/TextEditor.h>
-#include <LibHTML/Forward.h>
+#include <LibWeb/Forward.h>
class EditorWrapper;
diff --git a/DevTools/HackStudio/Makefile b/DevTools/HackStudio/Makefile
index 6598b57e35..d1f17a0651 100644
--- a/DevTools/HackStudio/Makefile
+++ b/DevTools/HackStudio/Makefile
@@ -17,6 +17,6 @@ OBJS = \
PROGRAM = HackStudio
-LIB_DEPS = GUI HTML VT Protocol Markdown Gfx IPC Thread Pthread Core
+LIB_DEPS = GUI Web VT Protocol Markdown Gfx IPC Thread Pthread Core
include ../../Makefile.common