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...@apache.org on 2002/05/06 07:15:19 UTC

cvs commit: xml-xalan/c/src/PlatformSupport DOMStringPrintWriter.cpp

dbertoni    02/05/05 22:15:19

  Modified:    c/src/PlatformSupport DOMStringPrintWriter.cpp
  Log:
  Use append instead of creating a sub-string.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-xalan/c/src/PlatformSupport/DOMStringPrintWriter.cpp
  
  Index: DOMStringPrintWriter.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringPrintWriter.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- DOMStringPrintWriter.cpp	27 Sep 2001 16:34:27 -0000	1.13
  +++ DOMStringPrintWriter.cpp	6 May 2002 05:15:19 -0000	1.14
  @@ -154,7 +154,7 @@
   	}
   	else
   	{
  -		m_outputString += substring(s, theOffset, theOffset + theLength);
  +		m_outputString.append(s, theOffset, theLength);
   	}
   }
   
  
  
  

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