diff options
-rw-r--r-- | src/java/org/apache/fop/fo/flow/table/RowGroupBuilder.java | 2 | ||||
-rw-r--r-- | src/java/org/apache/fop/fo/flow/table/TableBody.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/fo/flow/table/RowGroupBuilder.java b/src/java/org/apache/fop/fo/flow/table/RowGroupBuilder.java index faee3066f..e321547a8 100644 --- a/src/java/org/apache/fop/fo/flow/table/RowGroupBuilder.java +++ b/src/java/org/apache/fop/fo/flow/table/RowGroupBuilder.java @@ -102,7 +102,7 @@ abstract class RowGroupBuilder { * {@link TableBody#addRowGroup(List)} method will be called if the current row group * is finished. */ - void signalNewRow(TableBody body) { + void signalRowEnd(TableBody body) { if (currentRowIndex == rows.size() - 1) { // Means that the current row has no cell spanning over following rows body.addRowGroup(rows); diff --git a/src/java/org/apache/fop/fo/flow/table/TableBody.java b/src/java/org/apache/fop/fo/flow/table/TableBody.java index cd46f9dfd..7671a9c4f 100644 --- a/src/java/org/apache/fop/fo/flow/table/TableBody.java +++ b/src/java/org/apache/fop/fo/flow/table/TableBody.java @@ -171,7 +171,7 @@ public class TableBody extends TableCellContainer { case FO_TABLE_ROW: if (rowsStarted) { columnNumberManager.prepareForNextRow(pendingSpans); - getTable().getRowGroupBuilder().signalNewRow(this); + getTable().getRowGroupBuilder().signalRowEnd(this); } rowsStarted = true; break; @@ -182,7 +182,7 @@ public class TableBody extends TableCellContainer { if (cell.endsRow()) { firstRow = false; columnNumberManager.prepareForNextRow(pendingSpans); - getTable().getRowGroupBuilder().signalNewRow(this); + getTable().getRowGroupBuilder().signalRowEnd(this); } break; default: @@ -234,7 +234,7 @@ public class TableBody extends TableCellContainer { TableCell previousCell = (TableCell) getChildNodes().lastNode(); if (!previousCell.endsRow()) { columnNumberManager.prepareForNextRow(pendingSpans); - getTable().getRowGroupBuilder().signalNewRow(this); + getTable().getRowGroupBuilder().signalRowEnd(this); } } rowsStarted = true; |