diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-02-23 06:00:29 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-02-23 06:00:29 +0000 |
commit | ddaf8b2ad8b8241641d9406805319709e17b2f0d (patch) | |
tree | fb9ec046012a7514c4ba31826468f717a577f39a /src/org/apache/fop/fo/flow/ListItemBody.java | |
parent | 20eb35ecb4511689c56bdf21c73eb03591e37d67 (diff) | |
download | xmlgraphics-fop-ddaf8b2ad8b8241641d9406805319709e17b2f0d.tar.gz xmlgraphics-fop-ddaf8b2ad8b8241641d9406805319709e17b2f0d.zip |
Patch for list-block to support body-start and label-end
PR: 682
Obtained from:
Submitted by: Peter S. Housel <housel@acm.org>
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194086 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/ListItemBody.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/ListItemBody.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/org/apache/fop/fo/flow/ListItemBody.java b/src/org/apache/fop/fo/flow/ListItemBody.java index b98b33db4..fd7b1dfd2 100644 --- a/src/org/apache/fop/fo/flow/ListItemBody.java +++ b/src/org/apache/fop/fo/flow/ListItemBody.java @@ -90,10 +90,7 @@ public class ListItemBody extends FObj { int numChildren = this.children.size(); for (int i = this.marker; i < numChildren; i++) { FObj fo = (FObj) children.elementAt(i); - fo.setIsInListBody(); - fo.setDistanceBetweenStarts(this.distanceBetweenStarts); - fo.setLabelSeparation(this.labelSeparation); - fo.setBodyIndent(this.bodyIndent); + Status status; if ((status = fo.layout(area)).isIncomplete()) { this.marker = i; |