]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix missing static-content regression.
authorFinn Bock <bckfnn@apache.org>
Fri, 8 Oct 2004 10:07:40 +0000 (10:07 +0000)
committerFinn Bock <bckfnn@apache.org>
Fri, 8 Oct 2004 10:07:40 +0000 (10:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198017 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/pagination/PageSequence.java

index 2f70ab4987f62f6f5ffa4e4f81109bd508a6c78c..7d993964b7f613a12d13989e0947fcb98e2f65a2 100644 (file)
@@ -220,6 +220,8 @@ public class PageSequence extends FObj {
             super.addChildNode(child); // For getChildren
         } else if (childId == FO_STATIC_CONTENT) {
             addFlow((StaticContent) child);
+            String flowName = ((StaticContent) child).getPropString(PR_FLOW_NAME);
+            flowMap.put(flowName, child);
             startStructuredPageSequence();
         }
     }