Some Doxygen doc cleaning.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8354 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2011-02-01 15:41:04 +00:00
parent e7813bd7dc
commit b313a441cd

View File

@ -166,15 +166,18 @@ int Fl_Check_Browser::item_selected(void *v) const {
return i->selected;
}
/**
Add a new unchecked line to the end of the browser. The text is copied
using the strdup() function. It may also be NULL to make
a blank line. The second form can set the item checked.
Add a new unchecked line to the end of the browser.
\see add(char *s, int b)
*/
int Fl_Check_Browser::add(char *s) {
return (add(s, 0));
}
/** See int Fl_Check_Browser::add(char *s) */
/**
Add a new line to the end of the browser. The text is copied
using the strdup() function. It may also be NULL to make
a blank line. It can set the item checked if \p b is not 0.
*/
int Fl_Check_Browser::add(char *s, int b) {
cb_item *p = (cb_item *)malloc(sizeof(cb_item));
p->next = 0;