summaryrefslogtreecommitdiff
path: root/libnotify/notify.h
diff options
context:
space:
mode:
Diffstat (limited to 'libnotify/notify.h')
-rw-r--r--libnotify/notify.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libnotify/notify.h b/libnotify/notify.h
index 5c563dd..db53201 100644
--- a/libnotify/notify.h
+++ b/libnotify/notify.h
@@ -77,6 +77,7 @@ gboolean notify_is_initted(void);
*/
void notify_close(NotifyHandle *handle);
+
/**
* Returns the server information.
*
@@ -165,7 +166,7 @@ void notify_icon_destroy(NotifyIcon *icon);
*
* @return A unique ID for the notification.
*/
-NotifyHandle *notify_send_notification(guint32 replaces,
+NotifyHandle *notify_send_notification(NotifyHandle *replaces,
NotifyUrgency urgency,
const char *summary,
const char *detailed,
@@ -183,7 +184,7 @@ NotifyHandle *notify_send_notification(guint32 replaces,
* void callback(NotifyHandle *handle, guint32 action, void *user_data);
* @endcode
*
- * @param replaces The ID of the notification to atomically replace
+ * @param replaces The handle of the notification to atomically replace
* @param urgency The urgency level.
* @param summary The summary of the notification.
* @param detailed The optional detailed information.
@@ -198,7 +199,7 @@ NotifyHandle *notify_send_notification(guint32 replaces,
*
* @return A unique ID for the notification.
*/
-NotifyHandle *notify_send_notification_varg(guint32 replaces,
+NotifyHandle *notify_send_notification_varg(NotifyHandle *replaces,
NotifyUrgency urgency,
const char *summary,
const char *detailed,