diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:27:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:27:02 +0100 |
commit | 7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (patch) | |
tree | 3dc7962c6f81dac63e0315883a2fff03dc78cd2b /DevTools/HackStudio/Editor.h | |
parent | 6a3b12664a7ce85bef93497df70c0b96cfc509d0 (diff) | |
download | serenity-7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea.zip |
LibWeb: Move everything into the Web namespace
Diffstat (limited to 'DevTools/HackStudio/Editor.h')
-rw-r--r-- | DevTools/HackStudio/Editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DevTools/HackStudio/Editor.h b/DevTools/HackStudio/Editor.h index cd1fa0693e..3df2f8816f 100644 --- a/DevTools/HackStudio/Editor.h +++ b/DevTools/HackStudio/Editor.h @@ -27,9 +27,9 @@ #pragma once #include <LibGUI/TextEditor.h> +#include <LibHTML/Forward.h> class EditorWrapper; -class HtmlView; class Editor final : public GUI::TextEditor { C_OBJECT(Editor) @@ -52,6 +52,6 @@ private: explicit Editor(); RefPtr<GUI::Window> m_documentation_tooltip_window; - RefPtr<HtmlView> m_documentation_html_view; + RefPtr<Web::HtmlView> m_documentation_html_view; String m_last_parsed_token; }; |