Просмотр исходного кода

Fixed compile error


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198114 13f79535-47bb-0310-9956-ffa450edef68
tags/Root_Temp_KnuthStylePageBreaking
Jeremias Maerki 19 лет назад
Родитель
Сommit
2a2627afd1
1 измененных файлов: 7 добавлений и 4 удалений
  1. 7
    4
      examples/mathml/src/org/apache/fop/mathml/MathMLElement.java

+ 7
- 4
examples/mathml/src/org/apache/fop/mathml/MathMLElement.java Просмотреть файл

@@ -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;


Загрузка…
Отмена
Сохранить