From da81041e97d0fc7d37a985ce6ca4ded19ce2cdd1 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 27 Jan 2023 17:10:32 +0000 Subject: WindowServer: Remove declarations for non-existent methods --- Userland/Services/WindowServer/Screen.h | 1 - Userland/Services/WindowServer/Window.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/Userland/Services/WindowServer/Screen.h b/Userland/Services/WindowServer/Screen.h index 5af406280e..ef8b367ecf 100644 --- a/Userland/Services/WindowServer/Screen.h +++ b/Userland/Services/WindowServer/Screen.h @@ -180,7 +180,6 @@ private: Screen(size_t); bool open_device(); void close_device(); - void init(); void scale_factor_changed(); bool set_resolution(bool initial); void constrain_pending_flush_rects(); diff --git a/Userland/Services/WindowServer/Window.h b/Userland/Services/WindowServer/Window.h index abe0a76bf6..52628e503a 100644 --- a/Userland/Services/WindowServer/Window.h +++ b/Userland/Services/WindowServer/Window.h @@ -254,7 +254,6 @@ public: Gfx::Bitmap* last_backing_store() { return m_last_backing_store.ptr(); } i32 last_backing_store_serial() const { return m_last_backing_store_serial; } - void set_global_cursor_tracking_enabled(bool); void set_automatic_cursor_tracking_enabled(bool enabled) { m_automatic_cursor_tracking_enabled = enabled; } bool is_automatic_cursor_tracking() const { return m_automatic_cursor_tracking_enabled; } @@ -387,7 +386,6 @@ private: void add_child_window(Window&); void ensure_window_menu(); void update_window_menu_items(); - void modal_unparented(); ErrorOr> compute_title_username(ConnectionFromClient* client); ConnectionFromClient* m_client { nullptr }; -- cgit v1.2.3