From 9b00c4f9b3d1a541e6bf74d9769d2c4a65b92e43 Mon Sep 17 00:00:00 2001 From: Keiron Liddle Date: Tue, 17 Sep 2002 06:35:59 +0000 Subject: [PATCH] check keywords for string property, so that bold font works 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/org/apache/fop/fo/StringProperty.java b/src/org/apache/fop/fo/StringProperty.java index 93ed10bca..c97f6537b 100644 --- a/src/org/apache/fop/fo/StringProperty.java +++ b/src/org/apache/fop/fo/StringProperty.java @@ -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); } -- 2.39.5