1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +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

@ -25,12 +25,9 @@
*/
#include "ClientConnection.h"
#include "NotificationWindow.h"
#include <LibCore/LocalServer.h>
#include <LibGUI/Application.h>
#include <LibGUI/Desktop.h>
#include <LibGUI/WindowServerConnection.h>
#include <stdio.h>
#include <unistd.h>
int main(int argc, char** argv)
@ -68,7 +65,5 @@ int main(int argc, char** argv)
return 1;
}
GUI::Desktop::the().on_rect_change = [](auto&) { NotificationServer::update_notification_window_locations(); };
return app->exec();
}