From b313a441cdd1ef8437926d3dc9bdb744b4d36b10 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Tue, 1 Feb 2011 15:41:04 +0000 Subject: Some Doxygen doc cleaning. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8354 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Check_Browser.cxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src') 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; -- cgit v1.2.3