Alvin wrote: > I can't seem to figure out how to remove a line from a Fl_Check_Browser.
Fl_Browser::remove(int) takes an int, so e.g.
checkbrowser->remove(5);
..will remove the 5th line from the browser. See:
http://fltk.org/documentation.php/doc-1.1/Fl_Browser.html#Fl_Browser.remove
IIRC, Fl_Browser based widgets have index numbers that are 1 based.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

