summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2011-01-08 18:41:47 +0000
committerGreg Ercolano <erco@seriss.com>2011-01-08 18:41:47 +0000
commitba82efddcd2bab635e50375d8148cf52689cb57d (patch)
treed24ca09ae9696d3dce2fdcd9976ba7456a5f02c8
parent0b6b69caaa4de4cd3bf5a2e2ebb1a94b1132e823 (diff)
Example was missing end() in ctor.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8220 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--examples/table-simple.cxx1
1 files changed, 1 insertions, 0 deletions
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() { }
};