Function notify_notification_update
Updates the notification text and icon. This won't send the update out and display it on the screen. For that, you will need to call notify_notification_show().
extern(C) int notify_notification_update
(
NotifyNotification* notification,
const(char*) summary,
const(char*) body,
const(char*) icon
);
Parameters
Name | Description |
---|---|
notification | The notification to update. |
summary | The new required summary text. |
body | The optional body text. |
icon | The optional icon theme icon name or filename. |
Returns
true, unless an invalid parameter was passed.