You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/12/01 23:04:27 UTC

cvs commit: xml-xalan/c/src/XSLT ElemTextLiteral.cpp StylesheetHandler.cpp

dbertoni    00/12/01 14:04:26

  Modified:    c/src/XSLT ElemTextLiteral.cpp StylesheetHandler.cpp
  Log:
  Changes for vector iterator issues.
  
  Revision  Changes    Path
  1.8       +2 -2      xml-xalan/c/src/XSLT/ElemTextLiteral.cpp
  
  Index: ElemTextLiteral.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemTextLiteral.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ElemTextLiteral.cpp	2000/11/02 01:46:26	1.7
  +++ ElemTextLiteral.cpp	2000/12/01 22:04:25	1.8
  @@ -115,10 +115,10 @@
   
       if(!m_disableOutputEscaping)
       {
  -		executionContext.characters(m_ch.begin(), 0, unsigned(m_ch.size()));
  +		executionContext.characters(&*m_ch.begin(), 0, unsigned(m_ch.size()));
       }
       else
       {
  -		executionContext.charactersRaw(m_ch.begin(), 0, unsigned(m_ch.size()));
  +		executionContext.charactersRaw(&*m_ch.begin(), 0, unsigned(m_ch.size()));
       }
   }
  
  
  
  1.47      +1 -1      xml-xalan/c/src/XSLT/StylesheetHandler.cpp
  
  Index: StylesheetHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.cpp,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- StylesheetHandler.cpp	2000/11/02 01:46:28	1.46
  +++ StylesheetHandler.cpp	2000/12/01 22:04:26	1.47
  @@ -1164,7 +1164,7 @@
   			{
   				throw SAXException("Imports can only occur as the first elements in the stylesheet!");
   			}
  -			
  +
   			const XalanDOMString	saved_XSLNameSpaceURL = m_stylesheet.getXSLTNamespaceURI();
   
   			const XalanDOMString	href(atts.getValue(i));