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 kl...@apache.org on 2001/11/10 00:04:21 UTC

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

klease      01/11/09 15:04:21

  Modified:    src/org/apache/fop/fo FObjMixed.java
  Log:
  Fix an NPE
  
  Revision  Changes    Path
  1.15      +2 -1      xml-fop/src/org/apache/fop/fo/FObjMixed.java
  
  Index: FObjMixed.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/FObjMixed.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- FObjMixed.java	2001/11/09 11:32:37	1.14
  +++ FObjMixed.java	2001/11/09 23:04:21	1.15
  @@ -1,5 +1,5 @@
   /*
  - * $Id: FObjMixed.java,v 1.14 2001/11/09 11:32:37 keiron Exp $
  + * $Id: FObjMixed.java,v 1.15 2001/11/09 23:04:21 klease Exp $
    * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
    * For details on use and redistribution please refer to the
    * LICENSE file included with these sources.
  @@ -25,6 +25,7 @@
   
       protected void addCharacters(char data[], int start, int length) {
           if(textInfo == null) {
  +	    textInfo = new FOText.TextInfo();
               String fontFamily =
                   getProperty("font-family").getString();
               String fontStyle =
  
  
  

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