dbertoni    01/03/01 15:16:44

  Modified:    c/src/XMLSupport FormatterToHTML.cpp
  Log:
  Fixed bug where we were looking for the wrong qname separator character..
  
  Revision  Changes    Path
  1.52      +1 -1      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.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- FormatterToHTML.cpp       2001/02/23 20:59:28     1.51
  +++ FormatterToHTML.cpp       2001/03/01 23:16:43     1.52
  @@ -1034,7 +1034,7 @@
        if (m_prefixResolver != 0)
        {
                const unsigned int      theLength = length(theElementName);
  -             const unsigned int      theColonIndex = indexOf(theElementName, 
XalanUnicode::charSemicolon);
  +             const unsigned int      theColonIndex = indexOf(theElementName, 
XalanUnicode::charColon);
   
                const XalanDOMString*   thePrefix = &s_emptyString;
   
  
  
  

Reply via email to