From: arved Date: Tue, 1 May 2001 00:58:37 +0000 (+0000) Subject: K. Liddle: footnote height/id reference problem fixes X-Git-Tag: PRE_CODEFORMATTING~150 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d6f2c65b5a1b203bea3501e91bf1c3a10a322f87;p=xmlgraphics-fop.git K. Liddle: footnote height/id reference problem fixes git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194227 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/flow/TableBody.java b/src/org/apache/fop/fo/flow/TableBody.java index 408be1e56..b0ad61406 100644 --- a/src/org/apache/fop/fo/flow/TableBody.java +++ b/src/org/apache/fop/fo/flow/TableBody.java @@ -270,6 +270,7 @@ public class TableBody extends FObj { } lastRow = row; area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight()); + spaceLeft = area.spaceLeft(); } area.addChild(areaContainer); areaContainer.end(); @@ -298,5 +299,6 @@ public class TableBody extends FObj { area.increaseHeight(-spaceAfter); } this.resetMarker(); + this.removeID(area.getIDReferences()); } }