summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Window.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/Window.h')
-rw-r--r--Userland/Libraries/LibGUI/Window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/Window.h b/Userland/Libraries/LibGUI/Window.h
index 696706616e..102d834eb7 100644
--- a/Userland/Libraries/LibGUI/Window.h
+++ b/Userland/Libraries/LibGUI/Window.h
@@ -190,9 +190,9 @@ public:
void refresh_system_theme();
- static void for_each_window(Badge<WindowServerConnection>, Function<void(Window&)>);
- static void update_all_windows(Badge<WindowServerConnection>);
- void notify_state_changed(Badge<WindowServerConnection>, bool minimized, bool occluded);
+ static void for_each_window(Badge<ConnectionToWindowServer>, Function<void(Window&)>);
+ static void update_all_windows(Badge<ConnectionToWindowServer>);
+ void notify_state_changed(Badge<ConnectionToWindowServer>, bool minimized, bool occluded);
virtual bool is_visible_for_timer_purposes() const override { return m_visible_for_timer_purposes; }