You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2004/11/01 10:16:23 UTC

cvs commit: xml-fop/examples/mathml/src/org/apache/fop/mathml MathMLElement.java

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: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org