mirror of https://github.com/fltk/fltk
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:
parent
87c649e153
commit
a829ed2bd5
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue