1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibGUI: Put all classes in the GUI namespace and remove the leading G

This took me a moment. Welcome to the new world of GUI::Widget! :^)
This commit is contained in:
Andreas Kling 2020-02-02 15:07:41 +01:00
parent 2d39da5405
commit c5bd9d4ed1
337 changed files with 5400 additions and 4816 deletions

View file

@ -27,10 +27,13 @@
#include <LibGUI/GWidget.h>
class Document;
class GTableView;
class GTreeView;
class InspectorWidget final : public GWidget {
namespace GUI {
class TableView;
class TreeView;
}
class InspectorWidget final : public GUI::Widget {
C_OBJECT(InspectorWidget)
public:
virtual ~InspectorWidget();
@ -38,10 +41,10 @@ public:
void set_document(Document*);
private:
explicit InspectorWidget(GWidget* parent);
explicit InspectorWidget(GUI::Widget* parent);
RefPtr<GTreeView> m_dom_tree_view;
RefPtr<GTableView> m_style_table_view;
RefPtr<GTableView> m_computed_style_table_view;
RefPtr<GUI::TreeView> m_dom_tree_view;
RefPtr<GUI::TableView> m_style_table_view;
RefPtr<GUI::TableView> m_computed_style_table_view;
RefPtr<Document> m_document;
};