summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-02-01 15:41:04 +0000
committerManolo Gouy <Manolo>2011-02-01 15:41:04 +0000
commitb313a441cdd1ef8437926d3dc9bdb744b4d36b10 (patch)
tree79d0afeaff7de7ff5911a9c69e9df1b0c4b7fe10
parente7813bd7dc87494781ad116fbecc0a237982df02 (diff)
Some Doxygen doc cleaning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8354 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Fl_Check_Browser.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/Fl_Check_Browser.cxx b/src/Fl_Check_Browser.cxx
index f98380e89..5be663921 100644
--- a/src/Fl_Check_Browser.cxx
+++ b/src/Fl_Check_Browser.cxx
@@ -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;