diff options
-rw-r--r-- | src/java/org/apache/fop/fo/flow/TableCell.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableCell.java b/src/java/org/apache/fop/fo/flow/TableCell.java index 216ada8ab..7fb8f8b28 100644 --- a/src/java/org/apache/fop/fo/flow/TableCell.java +++ b/src/java/org/apache/fop/fo/flow/TableCell.java @@ -144,8 +144,7 @@ public class TableCell extends TableFObj { //column index to the specified value, so that the updated index will //be the correct initial value for the next cell (see Rec 7.26.8) if( pList.getExplicit(PR_COLUMN_NUMBER) != null ) { - ((TableFObj) parent).setCurrentColumnIndex( - pList.getExplicit(PR_COLUMN_NUMBER).getNumeric().getValue()); + ((TableFObj) parent).setCurrentColumnIndex(columnNumber.getValue()); } } |