From: Andreas L. Delmelle Date: Fri, 30 Dec 2005 18:58:39 +0000 (+0000) Subject: Applied white-space handling to leaders as well... X-Git-Tag: fop-0_92-beta~238 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c7a8efeab0c33751e770a66fe999536485e8c496;p=xmlgraphics-fop.git Applied white-space handling to leaders as well... git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@360142 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/FObjMixed.java b/src/java/org/apache/fop/fo/FObjMixed.java index b52cb9d03..d26dc6653 100644 --- a/src/java/org/apache/fop/fo/FObjMixed.java +++ b/src/java/org/apache/fop/fo/FObjMixed.java @@ -57,10 +57,8 @@ public abstract class FObjMixed extends FObj { /** @see org.apache.fop.fo.FONode#endOfNode() */ protected void endOfNode() throws FOPException { flushText(); - if (getNameId() != FO_LEADER) { - getFOEventHandler().whiteSpaceHandler - .handleWhiteSpace(this, currentTextNode); - } + getFOEventHandler().whiteSpaceHandler + .handleWhiteSpace(this, currentTextNode); super.endOfNode(); } @@ -88,7 +86,7 @@ public abstract class FObjMixed extends FObj { if (currentTextNode == null) { currentTextNode = child; } - } else if (getNameId() != FO_LEADER) { + } else { // handle white-space for all text up to here getFOEventHandler().whiteSpaceHandler .handleWhiteSpace(this, currentTextNode, child);