diff options
author | Steve Coffman <gears@apache.org> | 2000-12-04 20:10:33 +0000 |
---|---|---|
committer | Steve Coffman <gears@apache.org> | 2000-12-04 20:10:33 +0000 |
commit | 7cc222e4fc6b0d36c82279cbbae207cf4536fb01 (patch) | |
tree | d01af51a0e19ba8e48e1e0b6e1bbda76d4fe1a4b /src/org/apache/fop/fo/flow/TableRow.java | |
parent | 68d9473ba8b5673a05ca055101c6024c31d93469 (diff) | |
download | xmlgraphics-fop-7cc222e4fc6b0d36c82279cbbae207cf4536fb01.tar.gz xmlgraphics-fop-7cc222e4fc6b0d36c82279cbbae207cf4536fb01.zip |
Mikko Honkala's fix to allow JDK 1.1 users to compile and use FOP.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193857 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/TableRow.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/TableRow.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/TableRow.java b/src/org/apache/fop/fo/flow/TableRow.java index 408582c4b..fdc571c3d 100644 --- a/src/org/apache/fop/fo/flow/TableRow.java +++ b/src/org/apache/fop/fo/flow/TableRow.java @@ -347,7 +347,7 @@ public class TableRow extends FObj { CellState state = new CellState( i, false, cumulativeWidth ); // add the state of a cell. - cells.add( i, state ); + cells.insertElementAt( state,i); // cumulative width, i.e start offset of cell // also known as widthOfCellSoFar... cumulativeWidth += width; |