documented one missing remove() method.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6325 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2008-09-21 00:35:54 +00:00
parent 87c649e153
commit a829ed2bd5
1 changed files with 4 additions and 0 deletions

View File

@ -124,6 +124,10 @@ public:
*/
void insert(Fl_Widget& o, Fl_Widget* before) {insert(o,find(before));}
void remove(Fl_Widget&);
/**
Removes the widget \a o from the group.
\sa void remove(Fl_Widget&)
*/
void remove(Fl_Widget* o) {remove(*o);}
void clear();