diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-23 09:52:41 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-23 09:53:55 +0200 |
commit | a345a1f4a155ae62fb218f7f4c13d08911a73397 (patch) | |
tree | 3573a0d425ab5738e8cf99c56da1b9ac1fa07afa /Userland/Libraries/LibGUI/WindowServerConnection.h | |
parent | c1c252ddb2316cd2e82e3599d1a067c68ea9d099 (diff) | |
download | serenity-a345a1f4a155ae62fb218f7f4c13d08911a73397.zip |
Userland: Mark subclasses of IPC::{Client,Server}Connection final
Diffstat (limited to 'Userland/Libraries/LibGUI/WindowServerConnection.h')
-rw-r--r-- | Userland/Libraries/LibGUI/WindowServerConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/WindowServerConnection.h b/Userland/Libraries/LibGUI/WindowServerConnection.h index d5aef15cc6..ee1a032752 100644 --- a/Userland/Libraries/LibGUI/WindowServerConnection.h +++ b/Userland/Libraries/LibGUI/WindowServerConnection.h @@ -12,7 +12,7 @@ namespace GUI { -class WindowServerConnection +class WindowServerConnection final : public IPC::ServerConnection<WindowClientEndpoint, WindowServerEndpoint> , public WindowClientEndpoint { C_OBJECT(WindowServerConnection) |