Fill in handle->user_data in notify_send_notification_varg

This commit is contained in:
Mike Hearn 2005-07-09 17:30:55 +00:00
parent 635fc9d10a
commit a2f80feafb
2 changed files with 6 additions and 0 deletions

View File

@ -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:

View File

@ -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;
}