summaryrefslogtreecommitdiff
path: root/examples/table-simple.cxx
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2011-09-29 21:10:59 +0000
committerGreg Ercolano <erco@seriss.com>2011-09-29 21:10:59 +0000
commit9f9c16ac16e14a3a94fe3aef363f549cd4c6b3bf (patch)
treeae35a756c2b1d6bd53c0c7800d947f4313e51122 /examples/table-simple.cxx
parent7d44e7f378fcd803c24747bf6e7ecebc2d796a19 (diff)
Limit columns to 26 to ensure column labels are only A-Z.
(previous value of 30 was creating non-alpha label names..) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9086 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'examples/table-simple.cxx')
-rw-r--r--examples/table-simple.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/table-simple.cxx b/examples/table-simple.cxx
index cb770d57a..2f3d4be68 100644
--- a/examples/table-simple.cxx
+++ b/examples/table-simple.cxx
@@ -27,7 +27,7 @@
#include <FL/fl_draw.H>
#define MAX_ROWS 30
-#define MAX_COLS 30
+#define MAX_COLS 26 // A-Z
// Derive a class from Fl_Table
class MyTable : public Fl_Table {