diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-03-22 07:30:50 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-03-22 07:30:50 +0000 |
commit | dfb220d6bcc70c7a947c68fe581c0fa93b2accf3 (patch) | |
tree | b107d881b206fc867e91d02454bd6e39dfe98469 /src | |
parent | e8960466b4541ff0208a236b7c767b0a2982c214 (diff) | |
download | xmlgraphics-fop-dfb220d6bcc70c7a947c68fe581c0fa93b2accf3.tar.gz xmlgraphics-fop-dfb220d6bcc70c7a947c68fe581c0fa93b2accf3.zip |
Forgot a file when committing my changes for the user-supplied hyphenation patterns. Without the resolver, they are not picked up.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@387779 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java index 53c55490d..9dd0ad3fb 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java @@ -1517,7 +1517,9 @@ public class LineLayoutManager extends InlineStackingLayoutManager // on an inline or wrapper below the block level. Hyphenation hyph = Hyphenator.hyphenate(hyphenationProperties.language, - hyphenationProperties.country, sbChars.toString(), + hyphenationProperties.country, + getFObj().getUserAgent().getHyphenationTreeResolver(), + sbChars.toString(), hyphenationProperties.hyphenationRemainCharacterCount, hyphenationProperties.hyphenationPushCharacterCount); // They hyph structure contains the information we need |