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

Everywhere: Replace uses of GUI::Desktop's on_rect_change and remove it

This commit is contained in:
Linus Groh 2021-04-04 00:07:27 +02:00 committed by Andreas Kling
parent 5367bbb82c
commit 96b26ec125
7 changed files with 16 additions and 16 deletions

View file

@ -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;