aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-08-16 06:43:51 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-08-16 06:43:51 +0000
commit47daa474f7f92a928541f809058637d8cc4de499 (patch)
treebfd93df313e2b7fecb097dd8fcbe131244e04b4b /src/java/org/apache/fop/fo/flow
parent903caae0117f923fd80ca820b75f358462b13c48 (diff)
downloadxmlgraphics-fop-47daa474f7f92a928541f809058637d8cc4de499.tar.gz
xmlgraphics-fop-47daa474f7f92a928541f809058637d8cc4de499.zip
1. tie Document to fo.FOTreeBuilder and fo.pagination.Root
2. add getDocument() method to FONode (using this.parent for all nodes except Root) 3. start using getDocument() to gain access to font collections stored in Document git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow')
-rw-r--r--src/java/org/apache/fop/fo/flow/InstreamForeignObject.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java b/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java
index c8da3e382..62a9b5c4a 100644
--- a/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java
+++ b/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java
@@ -237,7 +237,7 @@ public class InstreamForeignObject extends FObj {
Rectangle2D placement = new Rectangle2D.Float(xoffset, yoffset, cwidth, cheight);
- Document doc = child.getDocument();
+ Document doc = child.getDOMDocument();
String ns = child.getDocumentNamespace();
children = null;