jeremias 2004/11/01 01:16:23 Modified: examples/mathml/src/org/apache/fop/mathml MathMLElement.java Log: Fixed compile error Revision Changes Path 1.9 +8 -5 xml-fop/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java Index: MathMLElement.java =================================================================== RCS file: /home/cvs/xml-fop/examples/mathml/src/org/apache/fop/mathml/MathMLElement.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- MathMLElement.java 28 Oct 2004 10:00:19 -0000 1.8 +++ MathMLElement.java 1 Nov 2004 09:16:23 -0000 1.9 @@ -24,6 +24,7 @@ import org.apache.fop.apps.FOPException; import org.apache.fop.fo.FONode; +import org.apache.fop.fo.PropertyList; import org.w3c.dom.DOMImplementation; import org.w3c.dom.Document; import org.w3c.dom.Element; @@ -58,9 +59,11 @@ /** * @see org.apache.fop.fo.FONode#processNode */ - public void processNode(String elementName, Locator locator, - Attributes attlist) throws FOPException { - super.processNode(elementName, locator, attlist); + public void processNode(String elementName, + Locator locator, + Attributes attlist, + PropertyList propertyList) throws FOPException { + super.processNode(elementName, locator, attlist, propertyList); createBasicDocument(); } @@ -73,7 +76,7 @@ converted = true; String fontname = "Helvetica"; int fontstyle = 0; - int inlinefontstyle = 0; + //int inlinefontstyle = 0; int displayfontsize = 12; int inlinefontsize = 12;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]