auriemma    00/11/03 11:27:55

  Modified:    c/src/XMLSupport FormatterToHTML.cpp
  Log:
  Fixed call to charAt so it would be compatible with XercesDOMString.
  
  Revision  Changes    Path
  1.32      +2 -2      xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp
  
  Index: FormatterToHTML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- FormatterToHTML.cpp       2000/11/02 22:25:40     1.31
  +++ FormatterToHTML.cpp       2000/11/03 19:27:49     1.32
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: FormatterToHTML.cpp,v 1.31 2000/11/02 22:25:40 dbertoni Exp $
  + * $Id: FormatterToHTML.cpp,v 1.32 2000/11/03 19:27:49 auriemma Exp $
    * 
    * $State: Exp $
    * 
  @@ -902,7 +902,7 @@
   
       for(unsigned int i = 0; i < len; ++i)
       {
  -             accum(s[i]);
  +             accum(charAt(s, i));
       }
   
       accum(XalanUnicode::charSemicolon);
  
  
  

Reply via email to