1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:37:36 +00:00

LibWeb: Move everything into the Web namespace

This commit is contained in:
Andreas Kling 2020-03-07 10:27:02 +01:00
parent 6a3b12664a
commit 7a6c4a72d5
143 changed files with 593 additions and 45 deletions

View file

@ -27,12 +27,12 @@
#pragma once
#include <LibGUI/Widget.h>
#include <LibHTML/Forward.h>
class IRCChannel;
class IRCClient;
class IRCQuery;
class IRCLogBuffer;
class HtmlView;
class IRCWindow : public GUI::Widget {
C_OBJECT(IRCWindow)
@ -72,7 +72,7 @@ private:
void* m_owner { nullptr };
Type m_type;
String m_name;
RefPtr<HtmlView> m_html_view;
RefPtr<Web::HtmlView> m_html_view;
RefPtr<GUI::TextEditor> m_text_editor;
RefPtr<IRCLogBuffer> m_log_buffer;
int m_unread_count { 0 };