diff options
author | Shannon Booth <shannon.ml.booth@gmail.com> | 2020-03-07 12:02:21 +1300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-07 01:33:53 +0100 |
commit | 6a3b12664a7ce85bef93497df70c0b96cfc509d0 (patch) | |
tree | 0af568a218003c41a86d2c8ba5bc1a35bc77cb89 /Applications/Help | |
parent | 57f1c919df4d755790f6ac1e4797ab514d436f9a (diff) | |
download | serenity-6a3b12664a7ce85bef93497df70c0b96cfc509d0.zip |
LibGUI: Move Icon and FontDatabase into the GUI namespace
We also clean up some old references to the old G prefixed GUI classes
This also fixes a potential bug with using: C_OBJECT_ABSTRACT(GAbstractButton)
instead of C_OBJECT_ABSTRACT(AbstractButton)
Diffstat (limited to 'Applications/Help')
-rw-r--r-- | Applications/Help/ManualModel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/Help/ManualModel.h b/Applications/Help/ManualModel.h index 3be13de25d..2a23f5d4a1 100644 --- a/Applications/Help/ManualModel.h +++ b/Applications/Help/ManualModel.h @@ -52,6 +52,6 @@ public: private: ManualModel(); - GIcon m_section_icon; - GIcon m_page_icon; + GUI::Icon m_section_icon; + GUI::Icon m_page_icon; }; |