summaryrefslogtreecommitdiffstats
path: root/include/widgets/listview.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/widgets/listview.h')
-rw-r--r--include/widgets/listview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/widgets/listview.h b/include/widgets/listview.h
index 81d705b1..e21f474f 100644
--- a/include/widgets/listview.h
+++ b/include/widgets/listview.h
@@ -69,6 +69,7 @@ typedef void ( *listview_update_callback )( textbox *tb, unsigned int entry, voi
typedef void ( *listview_mouse_activated_cb )( listview *, gboolean, void * );
/**
+ * @param parent The widget's parent.
* @param name The name of the to be created widget.
* @param cb The update callback.
* @param udata The user data to pass to the callback
@@ -77,7 +78,7 @@ typedef void ( *listview_mouse_activated_cb )( listview *, gboolean, void * );
*
* @returns a new listview
*/
-listview *listview_create ( const char *name, listview_update_callback cb, void *udata, unsigned int eh, gboolean reverse );
+listview *listview_create ( widget *parent, const char *name, listview_update_callback cb, void *udata, unsigned int eh, gboolean reverse );
/**
* @param lv The listview handle