]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
check keywords for string property, so that bold font works
authorKeiron Liddle <keiron@apache.org>
Tue, 17 Sep 2002 06:35:59 +0000 (06:35 +0000)
committerKeiron Liddle <keiron@apache.org>
Tue, 17 Sep 2002 06:35:59 +0000 (06:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195203 13f79535-47bb-0310-9956-ffa450edef68

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

index 93ed10bcab5e10a05b58b34c50c04e88a6f1f2f0..c97f6537b99d8f53011693228dce642fb47342dd 100644 (file)
@@ -36,6 +36,10 @@ public class StringProperty extends Property {
                                        + value);
                     // fall through and use the entire value, including first quote
                 }
+                String str = checkValueKeywords(value);
+                if(str != null) {
+                    value = str;
+                }
             }
             return new StringProperty(value);
         }