summaryrefslogtreecommitdiff
path: root/src/core/wee-list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/wee-list.c')
-rw-r--r--src/core/wee-list.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/wee-list.c b/src/core/wee-list.c
index 13429cc53..428a5cd20 100644
--- a/src/core/wee-list.c
+++ b/src/core/wee-list.c
@@ -139,7 +139,8 @@ weelist_insert (struct t_weelist *weelist, struct t_weelist_item *item,
*/
struct t_weelist_item *
-weelist_add (struct t_weelist *weelist, const char *data, const char *where)
+weelist_add (struct t_weelist *weelist, const char *data, const char *where,
+ void *user_data)
{
struct t_weelist_item *new_item;
@@ -150,6 +151,7 @@ weelist_add (struct t_weelist *weelist, const char *data, const char *where)
if (new_item)
{
new_item->data = strdup (data);
+ new_item->user_data = user_data;
weelist_insert (weelist, new_item, where);
weelist->size++;
}