diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/Notification.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/Notification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/Notification.cpp b/Userland/Libraries/LibGUI/Notification.cpp index a2e07f475e..19abfb12c6 100644 --- a/Userland/Libraries/LibGUI/Notification.cpp +++ b/Userland/Libraries/LibGUI/Notification.cpp @@ -60,7 +60,7 @@ Notification::~Notification() void Notification::show() { auto connection = NotificationServerConnection::construct(); - auto icon = m_icon ? m_icon->to_shareable_bitmap(connection->server_pid()) : Gfx::ShareableBitmap(); + auto icon = m_icon ? m_icon->to_shareable_bitmap() : Gfx::ShareableBitmap(); connection->send_sync<Messages::NotificationServer::ShowNotification>(m_text, m_title, icon); } |