diff options
author | Glen Mazza <gmazza@apache.org> | 2004-06-16 00:27:27 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-06-16 00:27:27 +0000 |
commit | ff3ccfb8410b3f3646d2fd80b60329208caacbfc (patch) | |
tree | a646ed5ae701e45a1484212065246ef7bdc7050f /src/java/org/apache/fop/fo/flow/Footnote.java | |
parent | 39d2edd0962d329ca15a1a99f895ce11262e004f (diff) | |
download | xmlgraphics-fop-ff3ccfb8410b3f3646d2fd80b60329208caacbfc.tar.gz xmlgraphics-fop-ff3ccfb8410b3f3646d2fd80b60329208caacbfc.zip |
1.) Check for fo:color-profile made to ensure no child elements during processing.
2.) Error messages for bad fo: files now give locator (line/col. #) information.
3.) Parent of the fo:root (FO Tree) "lowered" from apps.Document to fo.FOInputHandler;
IDReferences moved from former to latter.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197717 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Footnote.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Footnote.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Footnote.java b/src/java/org/apache/fop/fo/flow/Footnote.java index 536c8b06d..d2b5e9361 100644 --- a/src/java/org/apache/fop/fo/flow/Footnote.java +++ b/src/java/org/apache/fop/fo/flow/Footnote.java @@ -48,7 +48,7 @@ public class Footnote extends FObj { */ protected void addProperties(Attributes attlist) throws FOPException { super.addProperties(attlist); - getDocument().getFOInputHandler().startFootnote(this); + getFOInputHandler().startFootnote(this); } /** @@ -79,7 +79,7 @@ public class Footnote extends FObj { protected void end() { super.end(); - getDocument().getFOInputHandler().endFootnote(this); + getFOInputHandler().endFootnote(this); } public String getName() { |