diff --git a/Userland/Libraries/LibGUI/Notification.cpp b/Userland/Libraries/LibGUI/Notification.cpp index 30d61c7af4..ac92619eca 100644 --- a/Userland/Libraries/LibGUI/Notification.cpp +++ b/Userland/Libraries/LibGUI/Notification.cpp @@ -20,7 +20,6 @@ class NotificationServerConnection : public IPC::ServerConnection, int client_id); - virtual void greet() override; virtual void show_notification(String const&, String const&, Gfx::ShareableBitmap const&) override; virtual void close_notification() override; virtual Messages::NotificationServer::UpdateNotificationIconResponse update_notification_icon(Gfx::ShareableBitmap const&) override; diff --git a/Userland/Services/NotificationServer/NotificationServer.ipc b/Userland/Services/NotificationServer/NotificationServer.ipc index 09875d84d4..c51c894c60 100644 --- a/Userland/Services/NotificationServer/NotificationServer.ipc +++ b/Userland/Services/NotificationServer/NotificationServer.ipc @@ -1,8 +1,5 @@ endpoint NotificationServer { - // Basic protocol - greet() => () - show_notification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => () update_notification_text([UTF8] String text, [UTF8] String title) => (bool still_showing)