1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +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

@ -55,8 +55,8 @@ public:
void send_settings_to_window_server(int tabIndex);
void create_frame();
const GWidget* root_widget() const { return m_root_widget; }
GWidget* root_widget() { return m_root_widget; }
const GUI::Widget* root_widget() const { return m_root_widget; }
GUI::Widget* root_widget() { return m_root_widget; }
private:
void create_wallpaper_list();
@ -66,10 +66,10 @@ private:
private:
String m_wallpaper_path;
RefPtr<Core::ConfigFile> m_wm_config;
RefPtr<GWidget> m_root_widget;
RefPtr<GUI::Widget> m_root_widget;
Vector<Size> m_resolutions;
Vector<String> m_wallpapers;
RefPtr<GLabel> m_wallpaper_preview;
RefPtr<GUI::Label> m_wallpaper_preview;
Size m_selected_resolution;
String m_selected_wallpaper;