From ba82efddcd2bab635e50375d8148cf52689cb57d Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Sat, 8 Jan 2011 18:41:47 +0000 Subject: Example was missing end() in ctor. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8220 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- examples/table-simple.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/table-simple.cxx b/examples/table-simple.cxx index b1ad7c140..fb51a31cb 100644 --- a/examples/table-simple.cxx +++ b/examples/table-simple.cxx @@ -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() { } }; -- cgit v1.2.3