diff options
author | Vitaly Dyachkov <obyknovenius@me.com> | 2022-02-11 17:33:09 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-11 18:06:39 +0100 |
commit | 32b8795091681de7296074fb9a7b4f63a17e475a (patch) | |
tree | 90c7af82261061473d234ca4e6dbfc6dafa85d28 /Userland/Applications/DisplaySettings | |
parent | 873f4d5de62aab78e8b05efbb3e566de0efa7de4 (diff) | |
download | serenity-32b8795091681de7296074fb9a7b4f63a17e475a.zip |
LibConfig: Rename pledge_domains(String) => pledge_domain(String)
pledge_domains() that takes only one String argument was specifically
added as a shortcut for pledging a single domain. So, it makes sense to
use singular here.
Diffstat (limited to 'Userland/Applications/DisplaySettings')
-rw-r--r-- | Userland/Applications/DisplaySettings/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/DisplaySettings/main.cpp b/Userland/Applications/DisplaySettings/main.cpp index d036304858..d968d75d93 100644 --- a/Userland/Applications/DisplaySettings/main.cpp +++ b/Userland/Applications/DisplaySettings/main.cpp @@ -22,7 +22,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio thread recvfd sendfd rpath cpath wpath unix")); auto app = TRY(GUI::Application::try_create(arguments)); - Config::pledge_domains("WindowManager"); + Config::pledge_domain("WindowManager"); auto app_icon = GUI::Icon::default_icon("app-display-settings"); |