]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
Fixed getselection on listbox
authorsopwith <sopwith>
Tue, 19 Aug 1997 02:44:04 +0000 (02:44 +0000)
committersopwith <sopwith>
Tue, 19 Aug 1997 02:44:04 +0000 (02:44 +0000)
newt.h

diff --git a/newt.h b/newt.h
index 7d9f40c10ff745d945246232377c8573722d2f94..7e56cc21b10cdda5be04b23cc55398aed16949e3 100644 (file)
--- a/newt.h
+++ b/newt.h
@@ -139,6 +139,7 @@ int newtListboxInsertEntry(newtComponent co, char * text, void * data, int num);
 int newtListboxDeleteEntry(newtComponent co, int num);
 void newtListboxClear(newtComponent co); /* removes all entries from listbox */
 void newtListboxGetEntry(newtComponent co, int num, char **text, void **data);
+/* Returns an array of data pointers from items, last element is NULL */
 void **newtListboxGetSelection(newtComponent co, int *numitems);
 void newtListboxClearSelection(newtComponent co);
 void newtListboxSelectItem(newtComponent co, int item,