dbertoni 00/06/29 11:58:49
Modified: c/src/XercesPlatformSupport XercesDOMPrintWriter.cpp
Log:
Fixed newline problem on Linux.
Revision Changes Path
1.9 +1 -1
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.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XercesDOMPrintWriter.cpp 2000/06/28 17:52:04 1.8
+++ XercesDOMPrintWriter.cpp 2000/06/29 18:58:47 1.9
@@ -259,7 +259,7 @@
void
XercesDOMPrintWriter::println()
{
- m_OutputStream.write(XMLCh('\n'));
+ m_OutputStream.write(c_wstr(XALAN_STATIC_UCODE_STRING("\n")));
flush();
}