Example was missing end() in ctor.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8220 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano 2011-01-08 18:41:47 +00:00
parent 0b6b69caaa
commit ba82efddcd
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ public:
col_header(1); // enable column headers (along top)
col_width_all(80); // default width of columns
col_resize(1); // enable column resizing
end(); // end the Fl_Table group
}
~MyTable() { }
};