summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Hearn <mike@navi.cx>2005-07-09 17:30:55 +0000
committerMike Hearn <mike@navi.cx>2005-07-09 17:30:55 +0000
commita2f80feafb07b9d07b8721259e16ecd54beb9854 (patch)
tree0d65a2ebb1b43241857edd2045047e01f0abc37d
parent635fc9d10a9e9f4e486404ae6cf7d6a1f0d99d51 (diff)
downloadlibnotify-a2f80feafb07b9d07b8721259e16ecd54beb9854.tar.gz
Fill in handle->user_data in notify_send_notification_varg
-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;
}