From ced9f340e88e6011376fb65ae81bf2f2b327ecc0 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 11 Sep 2014 20:12:04 +0200 Subject: Fixed xalan::FormatterToXML constructor argument sequence * doctypeSystem and doctypePublic were mixed up --- src/transformer_facade.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transformer_facade.cc b/src/transformer_facade.cc index 1a55c4e..5bfb71e 100644 --- a/src/transformer_facade.cc +++ b/src/transformer_facade.cc @@ -41,8 +41,8 @@ std::unique_ptr augmentFormatterToXML( xalan::FormatterToXML::eDefaultIndentAmount, stylesheetRoot->getOutputEncoding(outputEncoding), stylesheetRoot->getOutputMediaType(outputMediaType), - stylesheetRoot->getOutputDoctypePublic(outputDoctypePublic), stylesheetRoot->getOutputDoctypeSystem(outputDoctypeSystem), + stylesheetRoot->getOutputDoctypePublic(outputDoctypePublic), !stylesheetRoot->getOmitOutputXMLDecl(), stylesheetRoot->getOutputStandalone(outputStandalone) ) -- cgit v1.2.3