aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache
diff options
context:
space:
mode:
authorarved <arved@unknown>2001-05-01 00:58:37 +0000
committerarved <arved@unknown>2001-05-01 00:58:37 +0000
commitd6f2c65b5a1b203bea3501e91bf1c3a10a322f87 (patch)
treeff2a1ddc887ae760fe866529e49d6115db543115 /src/org/apache
parent545e4bea23b471278267b085ea08fe99cba5d336 (diff)
downloadxmlgraphics-fop-d6f2c65b5a1b203bea3501e91bf1c3a10a322f87.tar.gz
xmlgraphics-fop-d6f2c65b5a1b203bea3501e91bf1c3a10a322f87.zip
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
Diffstat (limited to 'src/org/apache')
-rw-r--r--src/org/apache/fop/fo/flow/TableBody.java2
1 files changed, 2 insertions, 0 deletions
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());
}
}