1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

WindowServer: Remove unsued MenuManager::menu_selection_color()

This commit is contained in:
Shannon Booth 2020-02-18 19:08:05 +13:00 committed by Andreas Kling
parent 0bb4111735
commit 52c76aa9bf

View file

@ -78,7 +78,6 @@ public:
Menu* system_menu() { return m_system_menu; }
void set_system_menu(Menu&);
Color menu_selection_color() const { return m_menu_selection_color; }
int theme_index() const { return m_theme_index; }
Window& window() { return *m_window; }
@ -120,8 +119,6 @@ private:
bool m_needs_window_resize { false };
bool m_bar_open { false };
Color m_menu_selection_color;
int m_theme_index { 0 };
WeakPtr<MenuBar> m_current_menubar;