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

Ladybird: Move classes and types into the Ladybird namespace

We were super inconsistent about this, with most "new" classes living in
the Ladybird namespace, while "old" ones were in the global namespace,
or even sitting in the Browser namespace.
This commit is contained in:
Andrew Kaster 2023-08-02 11:52:59 -06:00 committed by Andreas Kling
parent 73fa58da34
commit 506b03740c
25 changed files with 99 additions and 39 deletions

View file

@ -30,7 +30,10 @@
#include <QResizeEvent>
extern DeprecatedString s_serenity_resource_root;
extern Browser::Settings* s_settings;
namespace Ladybird {
extern Settings* s_settings;
static QIcon create_tvg_icon_with_theme_colors(QString name, QPalette const& palette)
{
@ -691,3 +694,5 @@ void Tab::close_sub_widgets()
close_widget_window(m_console_widget);
close_widget_window(m_inspector_widget);
}
}