diff options
Diffstat (limited to 'Userland/Services/WindowServer/Menu.h')
-rw-r--r-- | Userland/Services/WindowServer/Menu.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Services/WindowServer/Menu.h b/Userland/Services/WindowServer/Menu.h index d23a1e6907..e5bf27f8eb 100644 --- a/Userland/Services/WindowServer/Menu.h +++ b/Userland/Services/WindowServer/Menu.h @@ -74,11 +74,6 @@ public: callback(item); } - Gfx::IntRect text_rect_in_global_menubar() const { return m_text_rect_in_global_menubar; } - void set_text_rect_in_global_menubar(const Gfx::IntRect& rect) { m_text_rect_in_global_menubar = rect; } - Gfx::IntRect rect_in_global_menubar() const { return m_rect_in_global_menubar; } - void set_rect_in_global_menubar(const Gfx::IntRect& rect) { m_rect_in_global_menubar = rect; } - Gfx::IntRect text_rect_in_window_menubar() const { return m_text_rect_in_window_menubar; } void set_text_rect_in_window_menubar(const Gfx::IntRect& rect) { m_text_rect_in_window_menubar = rect; } Gfx::IntRect rect_in_window_menubar() const { return m_rect_in_window_menubar; } @@ -153,8 +148,6 @@ private: ClientConnection* m_client { nullptr }; int m_menu_id { 0 }; String m_name; - Gfx::IntRect m_rect_in_global_menubar; - Gfx::IntRect m_text_rect_in_global_menubar; Gfx::IntRect m_rect_in_window_menubar; Gfx::IntRect m_text_rect_in_window_menubar; MenuBar* m_menubar { nullptr }; |