summaryrefslogtreecommitdiff
path: root/Userland/Applications/DisplaySettings
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-11-15 11:32:00 -0500
committerTim Flynn <trflynn89@pm.me>2022-11-15 13:25:51 -0500
commit4fd9e3ab080582de0e508d29bc3aee808c35174f (patch)
tree3a6a3d8b801830ebbd42ee929fcf27221a23e8a6 /Userland/Applications/DisplaySettings
parent05f41382bb527fbf2bb47340ad065b36f2e7409f (diff)
downloadserenity-4fd9e3ab080582de0e508d29bc3aee808c35174f.zip
Userland: Remove workarounds for LibIPC include order sensitivity
Diffstat (limited to 'Userland/Applications/DisplaySettings')
-rw-r--r--Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp
index 7b675c588a..47247ba197 100644
--- a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp
+++ b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp
@@ -9,6 +9,7 @@
#include "BackgroundSettingsWidget.h"
#include <AK/StringBuilder.h>
#include <Applications/DisplaySettings/BackgroundSettingsGML.h>
+#include <LibConfig/Client.h>
#include <LibCore/ConfigFile.h>
#include <LibDesktop/Launcher.h>
#include <LibGUI/Application.h>
@@ -26,9 +27,6 @@
#include <LibGfx/Palette.h>
#include <LibGfx/SystemTheme.h>
-// Including this after to avoid LibIPC errors
-#include <LibConfig/Client.h>
-
namespace DisplaySettings {
BackgroundSettingsWidget::BackgroundSettingsWidget(bool& background_settings_changed)