diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:21:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:22:54 +0200 |
commit | 42243d2e06a28bd2da0420eea49d84cb31bb1a9a (patch) | |
tree | c577dfbbf3bf28d9269964747c069bb2921783ba /Applications/TextEditor/TextEditorWidget.h | |
parent | 5f8cbe6a1b2c434d7723b05148c299a9e3c01d2d (diff) | |
download | serenity-42243d2e06a28bd2da0420eea49d84cb31bb1a9a.zip |
LibWeb: Rename Web::HtmlView => Web::PageView
This widget doesn't just view HTML, it views a web page. :^)
Diffstat (limited to 'Applications/TextEditor/TextEditorWidget.h')
-rw-r--r-- | Applications/TextEditor/TextEditorWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/TextEditor/TextEditorWidget.h b/Applications/TextEditor/TextEditorWidget.h index c3bdcd4482..cb21db1bc3 100644 --- a/Applications/TextEditor/TextEditorWidget.h +++ b/Applications/TextEditor/TextEditorWidget.h @@ -90,7 +90,7 @@ private: RefPtr<GUI::Action> m_js_highlight; RefPtr<GUI::Action> m_ini_highlight; - RefPtr<Web::HtmlView> m_html_view; + RefPtr<Web::PageView> m_page_view; bool m_document_dirty { false }; bool m_document_opening { false }; |