1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

WindowServer+LibGUI: Rename WindowType::MenuApplet => Applet

This commit is contained in:
Andreas Kling 2021-04-04 17:55:50 +02:00
parent dabfeb6dd8
commit 0069020e6c
13 changed files with 17 additions and 17 deletions

View file

@ -206,7 +206,7 @@ public:
void clear_dirty_rects();
Gfx::DisjointRectSet& dirty_rects() { return m_dirty_rects; }
// Only used by WindowType::MenuApplet. Perhaps it could be a Window subclass? I don't know.
// Only used by WindowType::Applet. Perhaps it could be a Window subclass? I don't know.
void set_rect_in_applet_area(const Gfx::IntRect& rect) { m_rect_in_applet_area = rect; }
const Gfx::IntRect& rect_in_applet_area() const { return m_rect_in_applet_area; }