diff options
author | Timothy <timmot@users.noreply.github.com> | 2021-08-03 22:05:07 +1000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-03 18:55:52 +0200 |
commit | 73c1b1617a2e538dee6c49dd04ad2601a7544b45 (patch) | |
tree | dce22b051695a26e95eca9cc69488e82ccfc60bb /Userland/Services/FileSystemAccessServer | |
parent | 2caafacd9ba9c67bb80f968d94f6a51e04f2b040 (diff) | |
download | serenity-73c1b1617a2e538dee6c49dd04ad2601a7544b45.zip |
Everywhere: Replace most cases of exit() with Application::quit()
Application::quit() is nicer for most cases where exit() is used. Cases
where exit() is used intentionally for early termination are left
intact.
Diffstat (limited to 'Userland/Services/FileSystemAccessServer')
-rw-r--r-- | Userland/Services/FileSystemAccessServer/ClientConnection.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Services/FileSystemAccessServer/ClientConnection.cpp b/Userland/Services/FileSystemAccessServer/ClientConnection.cpp index 2a5939a590..aa697f672c 100644 --- a/Userland/Services/FileSystemAccessServer/ClientConnection.cpp +++ b/Userland/Services/FileSystemAccessServer/ClientConnection.cpp @@ -34,7 +34,6 @@ void ClientConnection::die() { s_connections.remove(client_id()); GUI::Application::the()->quit(); - exit(0); } RefPtr<GUI::Window> ClientConnection::create_dummy_child_window(i32 window_server_client_id, i32 parent_window_id) |