1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

WindowServer: Rename reevaluate_hovered_window()

...to reevaluate_hover_state_for_window(). This name is not super great
either, but at least it doesn't sound like the window is necessarily
currently being hovered.
This commit is contained in:
Andreas Kling 2021-11-04 14:29:46 +01:00
parent c001926752
commit dd8a459a1f
3 changed files with 6 additions and 6 deletions

View file

@ -261,7 +261,7 @@ public:
void reload_icon_bitmaps_after_scale_change();
void reevaluate_hovered_window(Window* = nullptr);
void reevaluate_hover_state_for_window(Window* = nullptr);
Window* hovered_window() const { return m_hovered_window.ptr(); }
void switch_to_window_stack(WindowStack&, Window* = nullptr, bool show_overlay = true);