Continued fix for STR#2889
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9731 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
0d97108c7a
commit
c853380472
@ -478,11 +478,11 @@ public:
|
||||
~Fl_Table();
|
||||
|
||||
/**
|
||||
Clears the table to zero rows, zero columns.
|
||||
Same as rows(0); cols(0);
|
||||
Clears the table to zero rows (rows(0)), zero columns (cols(0)), and clears
|
||||
any widgets (table->clear()) that were added with begin()/end() or add()/insert()/etc.
|
||||
\see rows(int), cols(int)
|
||||
*/
|
||||
virtual void clear() { rows(0); cols(0); }
|
||||
virtual void clear() { rows(0); cols(0); table->clear(); }
|
||||
|
||||
// \todo: add topline(), middleline(), bottomline()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user