[webkit-changes] cvs commit: WebCore/khtml/xsl xslt_processorimpl.cpp

Timothy thatcher at opensource.apple.com
Wed Nov 16 16:39:53 PST 2005


thatcher    05/11/16 16:39:52

  Modified:    khtml/xsl Tag: Safari-2-0-branch xslt_processorimpl.cpp
  Log:
  Merge fix, was missing one line.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.4.10.4  +1 -1      WebCore/khtml/xsl/xslt_processorimpl.cpp
  
  Index: xslt_processorimpl.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/xsl/xslt_processorimpl.cpp,v
  retrieving revision 1.4.10.3
  retrieving revision 1.4.10.4
  diff -u -r1.4.10.3 -r1.4.10.4
  --- xslt_processorimpl.cpp	11 Nov 2005 01:45:55 -0000	1.4.10.3
  +++ xslt_processorimpl.cpp	17 Nov 2005 00:39:52 -0000	1.4.10.4
  @@ -143,7 +143,7 @@
   
   void XSLTProcessorImpl::addToResult(const char* buffer, int len)
   {
  -    m_resultOutput += QString(buffer, len);
  +    m_resultOutput += QString::fromUtf8(buffer, len);
   }
   
   DocumentImpl *XSLTProcessorImpl::documentFromXMLDocPtr(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
  
  
  



More information about the webkit-changes mailing list