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 /Userland | |
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 'Userland')
-rw-r--r-- | Userland/Makefile | 2 | ||||
-rw-r--r-- | Userland/html.cpp | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/Userland/Makefile b/Userland/Makefile index 717c41425b..8b60b9693a 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -4,7 +4,7 @@ APPS = ${SRCS:.cpp=} EXTRA_CLEAN = $(APPS) -LIB_DEPS = HTML GUI Gfx Audio Protocol IPC Thread Pthread Core PCIDB Markdown +LIB_DEPS = Web GUI Gfx Audio Protocol IPC Thread Pthread Core PCIDB Markdown include ../Makefile.common diff --git a/Userland/html.cpp b/Userland/html.cpp index 71f1c7fc99..9af204fbaa 100644 --- a/Userland/html.cpp +++ b/Userland/html.cpp @@ -32,15 +32,15 @@ #include <LibGUI/Menu.h> #include <LibGUI/MenuBar.h> #include <LibGUI/Window.h> -#include <LibHTML/CSS/StyleResolver.h> -#include <LibHTML/DOM/Element.h> -#include <LibHTML/Dump.h> -#include <LibHTML/HtmlView.h> -#include <LibHTML/Layout/LayoutBlock.h> -#include <LibHTML/Layout/LayoutInline.h> -#include <LibHTML/Layout/LayoutNode.h> -#include <LibHTML/Parser/CSSParser.h> -#include <LibHTML/Parser/HTMLParser.h> +#include <LibWeb/CSS/StyleResolver.h> +#include <LibWeb/DOM/Element.h> +#include <LibWeb/Dump.h> +#include <LibWeb/HtmlView.h> +#include <LibWeb/Layout/LayoutBlock.h> +#include <LibWeb/Layout/LayoutInline.h> +#include <LibWeb/Layout/LayoutNode.h> +#include <LibWeb/Parser/CSSParser.h> +#include <LibWeb/Parser/HTMLParser.h> #include <stdio.h> int main(int argc, char** argv) |