]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Improvement in handling relative font-weights
authorAndreas L. Delmelle <adelmelle@apache.org>
Fri, 6 Jul 2007 23:29:26 +0000 (23:29 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Fri, 6 Jul 2007 23:29:26 +0000 (23:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@554087 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FOPropertyMapping.java

index 84f524878337da8eb0c77ba23f28f997b017952d..7eea2dd93f0d1d8b7006335fa9a6ce0f8ca12289 100644 (file)
@@ -41,6 +41,7 @@ import org.apache.fop.fo.properties.FontShorthandParser;
 import org.apache.fop.fo.properties.FontShorthandProperty;
 import org.apache.fop.fo.properties.FontSizePropertyMaker;
 import org.apache.fop.fo.properties.FontStretchPropertyMaker;
+import org.apache.fop.fo.properties.FontWeightPropertyMaker;
 import org.apache.fop.fo.properties.GenericShorthandParser;
 import org.apache.fop.fo.properties.IndentPropertyMaker;
 import org.apache.fop.fo.properties.KeepProperty;
@@ -1032,7 +1033,7 @@ public final class FOPropertyMapping implements Constants {
         addPropertyMaker("font-variant", m);
 
         // font-weight
-        m  = new EnumProperty.Maker(PR_FONT_WEIGHT);
+        m  = new FontWeightPropertyMaker(PR_FONT_WEIGHT);
         m.setInherited(true);
         m.addKeyword("normal", "400");
         m.addKeyword("bold", "700");