dbertoni 2004/12/27 17:58:30
Modified: c/src/xalanc/TestXSLT process.cpp
Log:
Fixes for GCC 3.4.
Revision Changes Path
1.16 +10 -3 xml-xalan/c/src/xalanc/TestXSLT/process.cpp
Index: process.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/xalanc/TestXSLT/process.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- process.cpp 16 Nov 2004 05:05:07 -0000 1.15
+++ process.cpp 28 Dec 2004 01:58:30 -0000 1.16
@@ -628,7 +628,12 @@
}
else if(FormatterListener::OUTPUT_METHOD_TEXT == outputType)
{
- formatter = new FormatterToText( theManager, resultWriter,
mimeEncoding);
+ formatter = new FormatterToText(
+ resultWriter,
+ mimeEncoding,
+ true,
+ true,
+ theManager);
}
else if(FormatterListener::OUTPUT_METHOD_HTML == outputType)
{
@@ -656,14 +661,16 @@
FormatterToHTML* const fToHTML =
new FormatterToHTML(
- theManager,
resultWriter,
mimeEncoding,
mediatype,
doctypeSystem,
doctypePublic,
outputIndent,
- indentAmount);
+ indentAmount,
+ true,
+ false,
+ theManager);
fToHTML->setPrefixResolver(&prefixResolver);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]