diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-04 00:07:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-04 00:37:54 +0200 |
commit | 96b26ec125340b7a0b29754215dc24f372b6d737 (patch) | |
tree | 9da2e868e35d951449d34f057fc56fab3c9d7a1b /Userland/Services/NotificationServer/NotificationWindow.h | |
parent | 5367bbb82c5ff5f2bb657b6f93ec79807ebc57d5 (diff) | |
download | serenity-96b26ec125340b7a0b29754215dc24f372b6d737.zip |
Everywhere: Replace uses of GUI::Desktop's on_rect_change and remove it
Diffstat (limited to 'Userland/Services/NotificationServer/NotificationWindow.h')
-rw-r--r-- | Userland/Services/NotificationServer/NotificationWindow.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/NotificationServer/NotificationWindow.h b/Userland/Services/NotificationServer/NotificationWindow.h index a02894e2cb..7798b59635 100644 --- a/Userland/Services/NotificationServer/NotificationWindow.h +++ b/Userland/Services/NotificationServer/NotificationWindow.h @@ -31,8 +31,6 @@ namespace NotificationServer { -void update_notification_window_locations(); - class NotificationWindow final : public GUI::Window { C_OBJECT(NotificationWindow); @@ -49,6 +47,8 @@ public: private: NotificationWindow(i32 client_id, const String& text, const String& title, const Gfx::ShareableBitmap&); + virtual void screen_rect_change_event(GUI::ScreenRectChangeEvent&) override; + Gfx::IntRect m_original_rect; i32 m_id; |