]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed compile error
authorJeremias Maerki <jeremias@apache.org>
Mon, 1 Nov 2004 09:16:23 +0000 (09:16 +0000)
committerJeremias Maerki <jeremias@apache.org>
Mon, 1 Nov 2004 09:16:23 +0000 (09:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198114 13f79535-47bb-0310-9956-ffa450edef68

examples/mathml/src/org/apache/fop/mathml/MathMLElement.java

index 025ed602083b15ea0cb3f2cf71565446d3b5c46e..92501fe815e4af947af38b2637522af39ee47355 100644 (file)
@@ -24,6 +24,7 @@ import java.awt.geom.Point2D;
 
 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 @@ public class MathMLElement extends MathMLObj {
     /**
      * @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 @@ public class MathMLElement extends MathMLObj {
                 converted = true;
                 String fontname = "Helvetica";
                 int fontstyle = 0;
-                int inlinefontstyle = 0;
+                //int inlinefontstyle = 0;
                 int displayfontsize = 12;
                 int inlinefontsize = 12;