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/06/27 16:50:21 UTC

cvs commit: xml-xalan/c/src/XercesPlatformSupport XercesDOMPrintWriter.cpp

dbertoni    00/06/27 07:50:19

  Modified:    c/src/XercesPlatformSupport XercesDOMPrintWriter.cpp
  Log:
  Fixed a few embedded strings.
  
  Revision  Changes    Path
  1.7       +4 -4      xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp
  
  Index: XercesDOMPrintWriter.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XercesDOMPrintWriter.cpp	2000/05/24 19:29:18	1.6
  +++ XercesDOMPrintWriter.cpp	2000/06/27 14:50:17	1.7
  @@ -63,7 +63,7 @@
   
   
   
  -#include <dom/DOMString.hpp>
  +#include <XalanDOM/XalanDOMString.hpp>
   
   
   
  @@ -179,11 +179,11 @@
   {
   	if (b == true)
   	{
  -		print(DOMString("true"));
  +		print(XALAN_STATIC_UCODE_STRING("true"));
   	}
   	else
   	{
  -		print(DOMString("false"));
  +		print(XALAN_STATIC_UCODE_STRING("false"));
   	}
   }
   
  @@ -259,7 +259,7 @@
   void
   XercesDOMPrintWriter::println()
   {
  -	m_OutputStream.write("\n");
  +	m_OutputStream.write(XMLCh('\n'));
   }