diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:32:51 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:32:51 +0100 |
commit | 830a57c6b23430c749395811761252d1999f3559 (patch) | |
tree | 0bccfa6bc0ec8a39af0dab20633257df3384a4b3 /Applications/Help | |
parent | 7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (diff) | |
download | serenity-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 'Applications/Help')
-rw-r--r-- | Applications/Help/Makefile | 2 | ||||
-rw-r--r-- | Applications/Help/main.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Applications/Help/Makefile b/Applications/Help/Makefile index c6e4923296..8fac56daac 100644 --- a/Applications/Help/Makefile +++ b/Applications/Help/Makefile @@ -7,6 +7,6 @@ OBJS = \ PROGRAM = Help -LIB_DEPS = GUI HTML Gfx Markdown IPC Protocol Thread Pthread Core +LIB_DEPS = GUI Web Gfx Markdown IPC Protocol Thread Pthread Core include ../../Makefile.common diff --git a/Applications/Help/main.cpp b/Applications/Help/main.cpp index cb640633ff..d9b9f30417 100644 --- a/Applications/Help/main.cpp +++ b/Applications/Help/main.cpp @@ -40,10 +40,10 @@ #include <LibGUI/ToolBar.h> #include <LibGUI/TreeView.h> #include <LibGUI/Window.h> -#include <LibHTML/HtmlView.h> -#include <LibHTML/Layout/LayoutNode.h> -#include <LibHTML/Parser/CSSParser.h> -#include <LibHTML/Parser/HTMLParser.h> +#include <LibWeb/HtmlView.h> +#include <LibWeb/Layout/LayoutNode.h> +#include <LibWeb/Parser/CSSParser.h> +#include <LibWeb/Parser/HTMLParser.h> #include <LibMarkdown/MDDocument.h> #include <libgen.h> #include <stdio.h> |