From ddaf8b2ad8b8241641d9406805319709e17b2f0d Mon Sep 17 00:00:00 2001 From: Kelly Campbell Date: Fri, 23 Feb 2001 06:00:29 +0000 Subject: Patch for list-block to support body-start and label-end PR: 682 Obtained from: Submitted by: Peter S. Housel Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194086 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/flow/ListItemBody.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/org/apache/fop/fo/flow/ListItemBody.java') 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; -- cgit v1.2.3