From 8b96ef015201013f12d97418894d8c9af000ebda Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Wed, 8 Sep 2010 11:54:47 +0000 Subject: fixes #5560 svn changeset:14775/svn branch:6.4 --- src/com/vaadin/ui/Table.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 9ab44d5171..10d334e129 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -509,7 +509,7 @@ public class Table extends AbstractSelect implements Action.Container, * {@link #COLUMN_HEADER_MODE_EXPLICIT} or * {@link #COLUMN_HEADER_MODE_EXPLICIT_DEFAULTS_ID} mode to show the * headers. In the defaults mode any nulls in the headers array are replaced - * with id.toString() outputs when rendering. + * with id.toString(). *

* * @return the Array of column headers. @@ -522,7 +522,7 @@ public class Table extends AbstractSelect implements Action.Container, int i = 0; for (final Iterator it = visibleColumns.iterator(); it .hasNext(); i++) { - headers[i] = columnHeaders.get(it.next()); + headers[i] = getColumnHeader(it.next()); } return headers; } -- cgit v1.2.3