1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibGUI: Fix typo in ConnectionToWindowManagerServer

This commit is contained in:
Olivier De Cannière 2022-06-01 13:41:34 +02:00 committed by Andreas Kling
parent 524f4be5af
commit 6c202ee4a9
12 changed files with 41 additions and 41 deletions

View file

@ -17,7 +17,7 @@
#include <LibDesktop/Launcher.h>
#include <LibGUI/ActionGroup.h>
#include <LibGUI/Application.h>
#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/ConnectionToWindowManagerServer.h>
#include <LibGUI/ConnectionToWindowServer.h>
#include <LibGUI/Menu.h>
#include <LibGUI/Process.h>
@ -56,7 +56,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath unix"));
GUI::ConnectionToWindowMangerServer::the();
GUI::ConnectionToWindowManagerServer::the();
Desktop::Launcher::ensure_connection();
TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath"));