aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/TableRow.java
diff options
context:
space:
mode:
authorjtauber <jtauber@unknown>1999-11-22 18:09:40 +0000
committerjtauber <jtauber@unknown>1999-11-22 18:09:40 +0000
commitafe7f2ed9c43dd1b52b7618fe13918e73f0fafe1 (patch)
tree7fd9d2b55b8a9352bb38c458f3a4bbcb7e1ed96d /src/org/apache/fop/fo/flow/TableRow.java
parentc1ad1ad85e81ef103443fe944172ed98d91f68d4 (diff)
downloadxmlgraphics-fop-afe7f2ed9c43dd1b52b7618fe13918e73f0fafe1.tar.gz
xmlgraphics-fop-afe7f2ed9c43dd1b52b7618fe13918e73f0fafe1.zip
added Eric Schaeffer's fixes for when tables are in static-content
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193237 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.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/TableRow.java b/src/org/apache/fop/fo/flow/TableRow.java
index 9578f0ea3..8f4549345 100644
--- a/src/org/apache/fop/fo/flow/TableRow.java
+++ b/src/org/apache/fop/fo/flow/TableRow.java
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Fop" and "Apache Software Foundation" must not be used to
+ 4. The names "FOP" and "Apache Software Foundation" must not be used to
endorse or promote products derived from this software without prior
written permission. For written permission, please contact
apache@apache.org.
@@ -148,6 +148,10 @@ public class TableRow extends FObj {
return OK;
}
+ // added by Eric Schaeffer
+ widthOfCellsSoFar = 0;
+ largestCellHeight = 0;
+
for (int i = this.marker; i < numChildren; i++) {
TableCell cell = (TableCell) children.elementAt(i);