diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-09-08 11:54:47 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-09-08 11:54:47 +0000 |
commit | 8b96ef015201013f12d97418894d8c9af000ebda (patch) | |
tree | 8e049d70bad97afb87134af1426c072ea83c4230 /src | |
parent | 022ca6086233528e3f62f59dd01822dde9f73837 (diff) | |
download | vaadin-framework-8b96ef015201013f12d97418894d8c9af000ebda.tar.gz vaadin-framework-8b96ef015201013f12d97418894d8c9af000ebda.zip |
fixes #5560
svn changeset:14775/svn branch:6.4
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 4 |
1 files changed, 2 insertions, 2 deletions
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(). * </p> * * @return the Array of column headers. @@ -522,7 +522,7 @@ public class Table extends AbstractSelect implements Action.Container, int i = 0; for (final Iterator<Object> it = visibleColumns.iterator(); it .hasNext(); i++) { - headers[i] = columnHeaders.get(it.next()); + headers[i] = getColumnHeader(it.next()); } return headers; } |