Spell check was an after thought..

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6696 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano
2009-03-17 03:41:34 +00:00
parent 498dcb05ae
commit cae2ca6d7e
+2 -2
View File
@@ -106,7 +106,7 @@ int Fl_Browser::item_selected(void* item) const {
/** /**
Change the selection state of \p item to the value \p val. Change the selection state of \p item to the value \p val.
\param[in] item The item to be changed. \param[in] item The item to be changed.
\param[in] v The new selection state: 1 selects, 0 de-selects. \param[in] val The new selection state: 1 selects, 0 de-selects.
*/ */
void Fl_Browser::item_select(void *item, int val) { void Fl_Browser::item_select(void *item, int val) {
if (val) ((FL_BLINE*)item)->flags |= SELECTED; if (val) ((FL_BLINE*)item)->flags |= SELECTED;
@@ -227,7 +227,7 @@ void Fl_Browser::remove(int line) {
Caveat: See efficiency note in find_line(). Caveat: See efficiency note in find_line().
\param[in] line The new line will be inserted above this line (1 based). \param[in] line The new line will be inserted above this line (1 based).
\param[in] item The the item to be added. \param[in] item The item to be added.
*/ */
void Fl_Browser::insert(int line, FL_BLINE* item) { void Fl_Browser::insert(int line, FL_BLINE* item) {
if (!first) { if (!first) {