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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]