diff options
Diffstat (limited to 'Userland/Services/NotificationServer/ConnectionFromClient.h')
-rw-r--r-- | Userland/Services/NotificationServer/ConnectionFromClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/NotificationServer/ConnectionFromClient.h b/Userland/Services/NotificationServer/ConnectionFromClient.h index 204f92d64c..4e6875d1de 100644 --- a/Userland/Services/NotificationServer/ConnectionFromClient.h +++ b/Userland/Services/NotificationServer/ConnectionFromClient.h @@ -21,7 +21,7 @@ public: virtual void die() override; private: - explicit ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket>, int client_id); + explicit ConnectionFromClient(NonnullOwnPtr<Core::LocalSocket>, int client_id); virtual void show_notification(DeprecatedString const&, DeprecatedString const&, Gfx::ShareableBitmap const&) override; virtual void close_notification() override; |