diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-15 11:32:00 -0500 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-11-15 13:25:51 -0500 |
commit | 4fd9e3ab080582de0e508d29bc3aee808c35174f (patch) | |
tree | 3a6a3d8b801830ebbd42ee929fcf27221a23e8a6 /Userland/Applications/KeyboardSettings | |
parent | 05f41382bb527fbf2bb47340ad065b36f2e7409f (diff) | |
download | serenity-4fd9e3ab080582de0e508d29bc3aee808c35174f.zip |
Userland: Remove workarounds for LibIPC include order sensitivity
Diffstat (limited to 'Userland/Applications/KeyboardSettings')
-rw-r--r-- | Userland/Applications/KeyboardSettings/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Applications/KeyboardSettings/main.cpp b/Userland/Applications/KeyboardSettings/main.cpp index 9db04a1784..7d36b7db9d 100644 --- a/Userland/Applications/KeyboardSettings/main.cpp +++ b/Userland/Applications/KeyboardSettings/main.cpp @@ -6,15 +6,13 @@ */ #include "KeyboardSettingsWidget.h" +#include <LibConfig/Client.h> #include <LibCore/ArgsParser.h> #include <LibCore/System.h> #include <LibGUI/Application.h> #include <LibGUI/SettingsWindow.h> #include <LibMain/Main.h> -// Including this after to avoid LibIPC errors -#include <LibConfig/Client.h> - ErrorOr<int> serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio rpath recvfd sendfd unix proc exec")); |