From: Keiron Liddle Date: Thu, 3 Aug 2000 05:36:00 +0000 (+0000) Subject: now in action X-Git-Tag: pre-columns~282 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=548f548f577297e580c65a1f0c72bfb0ebd8bc24;p=xmlgraphics-fop.git now in action git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193595 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/svg/SVGPropertyListMapping.java b/src/org/apache/fop/svg/SVGPropertyListMapping.java index c79530e7b..f80c9670a 100644 --- a/src/org/apache/fop/svg/SVGPropertyListMapping.java +++ b/src/org/apache/fop/svg/SVGPropertyListMapping.java @@ -106,13 +106,13 @@ public class SVGPropertyListMapping implements PropertyListMapping { propertyTable.put("id",Id.maker()); // attribute for objects -// builder.addPropertyList(uri, propertyTable); + builder.addPropertyList(uri, propertyTable); propertyTable = new Hashtable(); propertyTable.put("x",SVGLengthListProperty.maker()); propertyTable.put("y",SVGLengthListProperty.maker()); propertyTable.put("dx",SVGLengthListProperty.maker()); propertyTable.put("dy",SVGLengthListProperty.maker()); -// builder.addElementPropertyList(uri, "tref", propertyTable); -// builder.addElementPropertyList(uri, "tspan", propertyTable); + builder.addElementPropertyList(uri, "tref", propertyTable); + builder.addElementPropertyList(uri, "tspan", propertyTable); } }