using (unimplemented) bidi-override. Patch by Finn Bock.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197074
13f79535-47bb-0310-9956-
ffa450edef68
for (int count = childList.size() - 1; count >= 0; count--) {
LayoutProcessor lm = (LayoutProcessor) childList.get(count);
if (lm.generatesInlineAreas()) {
- LayoutProcessor blm = new BidiLayoutManager((LeafNodeLayoutManager) lm);
+ LayoutProcessor blm = new BidiLayoutManager((InlineStackingLayoutManager) lm);
blm.setFObj(node);
currentLMList.add(blm);
} else {
private List children;
- BidiLayoutManager(LeafNodeLayoutManager cLM) {
+ BidiLayoutManager(InlineStackingLayoutManager cLM) {
children = new ArrayList();
/*
for (int count = cLM.size() - 1; count >= 0; count--) {