aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/extensions/svg/SVGElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/extensions/svg/SVGElement.java')
-rw-r--r--src/java/org/apache/fop/fo/extensions/svg/SVGElement.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/extensions/svg/SVGElement.java b/src/java/org/apache/fop/fo/extensions/svg/SVGElement.java
index 67923a7af..cd523da58 100644
--- a/src/java/org/apache/fop/fo/extensions/svg/SVGElement.java
+++ b/src/java/org/apache/fop/fo/extensions/svg/SVGElement.java
@@ -20,6 +20,7 @@ package org.apache.fop.fo.extensions.svg;
// FOP
import org.apache.fop.fo.FONode;
+import org.apache.fop.fo.PropertyList;
import org.apache.batik.dom.svg.SVGOMDocument;
import org.apache.batik.dom.svg.SVGOMElement;
@@ -61,8 +62,8 @@ public class SVGElement extends SVGObj {
* @see org.apache.fop.fo.FONode#processNode
*/
public void processNode(String elementName, Locator locator,
- Attributes attlist) throws SAXParseException {
- super.processNode(elementName, locator, attlist);
+ Attributes attlist, PropertyList propertyList) throws SAXParseException {
+ super.processNode(elementName, locator, attlist, propertyList);
init();
}