diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-02-17 09:52:36 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-02-17 09:52:36 +0000 |
commit | 90a82aaadad9c950b0c12c33ffb8b4d7201df286 (patch) | |
tree | 375ff59bd886ccc3d1c7e70758990a60a227c918 /examples | |
parent | c90cdb4cd6ebc965b1025a97c2b02d0cf38f28b8 (diff) | |
download | xmlgraphics-fop-90a82aaadad9c950b0c12c33ffb8b4d7201df286.tar.gz xmlgraphics-fop-90a82aaadad9c950b0c12c33ffb8b4d7201df286.zip |
Fix MathML rendering. Missed renaming an override method after my cleanup work in the FO tree.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@378471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'examples')
-rw-r--r-- | examples/mathml/src/org/apache/fop/mathml/MathMLElement.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java b/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java index b6bd14188..5eb22e581 100644 --- a/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java +++ b/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java @@ -147,9 +147,9 @@ public class MathMLElement extends MathMLObj { } /** - * @see org.apache.fop.fo.XMLObj#getDocumentNamespace() + * @see org.apache.fop.fo.FONode#getNamespaceURI() */ - public String getDocumentNamespace() { + public String getNamespaceURI() { if (svgDoc == null) { return MathMLElementMapping.NAMESPACE; } |