mirror of
https://github.com/fltk/fltk.git
synced 2026-05-27 10:57:58 +08:00
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:
@@ -166,15 +166,18 @@ int Fl_Check_Browser::item_selected(void *v) const {
|
|||||||
return i->selected;
|
return i->selected;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
Add a new unchecked line to the end of the browser. The text is copied
|
Add a new unchecked line to the end of the browser.
|
||||||
using the strdup() function. It may also be NULL to make
|
\see add(char *s, int b)
|
||||||
a blank line. The second form can set the item checked.
|
|
||||||
*/
|
*/
|
||||||
int Fl_Check_Browser::add(char *s) {
|
int Fl_Check_Browser::add(char *s) {
|
||||||
return (add(s, 0));
|
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) {
|
int Fl_Check_Browser::add(char *s, int b) {
|
||||||
cb_item *p = (cb_item *)malloc(sizeof(cb_item));
|
cb_item *p = (cb_item *)malloc(sizeof(cb_item));
|
||||||
p->next = 0;
|
p->next = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user