diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-06 20:33:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 20:33:02 +0100 |
commit | 6a9cc66b976653bf5f0440a6071b736d6d41c183 (patch) | |
tree | 538a7595db75641409ffb36fad9f31613812c9aa /Userland/html.cpp | |
parent | 2e219255a2f062e9d7da0c9a306e84bde95db2fa (diff) | |
download | serenity-6a9cc66b976653bf5f0440a6071b736d6d41c183.zip |
LibGUI: Remove leading G from filenames
Diffstat (limited to 'Userland/html.cpp')
-rw-r--r-- | Userland/html.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Userland/html.cpp b/Userland/html.cpp index 6e9c81be8c..5e0594763a 100644 --- a/Userland/html.cpp +++ b/Userland/html.cpp @@ -25,12 +25,12 @@ */ #include <LibCore/File.h> -#include <LibGUI/GAboutDialog.h> -#include <LibGUI/GAction.h> -#include <LibGUI/GApplication.h> -#include <LibGUI/GMenu.h> -#include <LibGUI/GMenuBar.h> -#include <LibGUI/GWindow.h> +#include <LibGUI/AboutDialog.h> +#include <LibGUI/Action.h> +#include <LibGUI/Application.h> +#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> |