You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ke...@apache.org on 2002/09/17 08:35:59 UTC

cvs commit: xml-fop/src/org/apache/fop/fo StringProperty.java

keiron      2002/09/16 23:35:59

  Modified:    src/org/apache/fop/fo StringProperty.java
  Log:
  check keywords for string property, so that bold font works
  
  Revision  Changes    Path
  1.3       +5 -1      xml-fop/src/org/apache/fop/fo/StringProperty.java
  
  Index: StringProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/StringProperty.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StringProperty.java	30 Jul 2001 20:29:20 -0000	1.2
  +++ StringProperty.java	17 Sep 2002 06:35:59 -0000	1.3
  @@ -36,6 +36,10 @@
                                          + value);
                       // fall through and use the entire value, including first quote
                   }
  +                String str = checkValueKeywords(value);
  +                if(str != null) {
  +                    value = str;
  +                }
               }
               return new StringProperty(value);
           }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org