summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--libnotify/notify.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bf2f3f6..527ff83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 9 18:30:41 2005 Duarte Henriques <maxcow@users.sourceforge.net>
+
+ * libnotify/notify.c:
+ - Fill in handle->user_data in notify_send_notification_varg
+
Mon Jul 04 02:13:56 PDT 2005 Christian Hammond <chipx86@chipx86.com>
* tests/Makefile.am:
diff --git a/libnotify/notify.c b/libnotify/notify.c
index 7551db3..ca5aa37 100644
--- a/libnotify/notify.c
+++ b/libnotify/notify.c
@@ -869,6 +869,7 @@ notify_send_notification_varg(NotifyHandle *replaces, const char *type,
handle = _notify_handle_new(id);
handle->actions_table = table;
handle->action_count = action_count;
+ handle->user_data = user_data;
return handle;
}