diff options
author | Glen Mazza <gmazza@apache.org> | 2004-06-15 06:26:56 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-06-15 06:26:56 +0000 |
commit | 39d2edd0962d329ca15a1a99f895ce11262e004f (patch) | |
tree | e9f977dd16ed1f05f9310ad8dbc9573f32818a0a /src/java/org/apache/fop/fo/flow/Inline.java | |
parent | c9f1a6f52eb0d88bb0dfefdd2f7119fb7afb2626 (diff) | |
download | xmlgraphics-fop-39d2edd0962d329ca15a1a99f895ce11262e004f.tar.gz xmlgraphics-fop-39d2edd0962d329ca15a1a99f895ce11262e004f.zip |
1.) Added restriction to fo:declarations that fo:color-profile is the only XSL namespace child element allowed.
2.) Switched from fo.FOTreeControl to apps.Document throughout app, to better clarify that it is the apps.Document object being accessed/used.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197716 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Inline.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Inline.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Inline.java b/src/java/org/apache/fop/fo/flow/Inline.java index ebe49bd49..8d940ddab 100644 --- a/src/java/org/apache/fop/fo/flow/Inline.java +++ b/src/java/org/apache/fop/fo/flow/Inline.java @@ -114,7 +114,7 @@ public class Inline extends FObjMixed { this.lineThrough = true; } - getFOTreeControl().getFOInputHandler().startInline(this); + getDocument().getFOInputHandler().startInline(this); } /** @@ -139,7 +139,7 @@ public class Inline extends FObjMixed { * @see org.apache.fop.fo.FONode#end */ public void end() { - getFOTreeControl().getFOInputHandler().endInline(this); + getDocument().getFOInputHandler().endInline(this); } public String getName() { |