aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 20:12:04 +0200
committerAdrian Kummerlaender2014-09-11 20:12:04 +0200
commitced9f340e88e6011376fb65ae81bf2f2b327ecc0 (patch)
tree1bec1b8047c388bedc9dc33ee0fb9f27c3e326ee
parent5a4e8d71da060d3cda8d4ecb94e4d6e628e93cae (diff)
downloadInputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar.gz
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar.bz2
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar.lz
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar.xz
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.tar.zst
InputXSLT-ced9f340e88e6011376fb65ae81bf2f2b327ecc0.zip
Fixed xalan::FormatterToXML constructor argument sequence
* doctypeSystem and doctypePublic were mixed up
-rw-r--r--src/transformer_facade.cc2
1 files changed, 1 insertions, 1 deletions
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<xalan::FormatterToXML> augmentFormatterToXML(
xalan::FormatterToXML::eDefaultIndentAmount,
stylesheetRoot->getOutputEncoding(outputEncoding),
stylesheetRoot->getOutputMediaType(outputMediaType),
- stylesheetRoot->getOutputDoctypePublic(outputDoctypePublic),
stylesheetRoot->getOutputDoctypeSystem(outputDoctypeSystem),
+ stylesheetRoot->getOutputDoctypePublic(outputDoctypePublic),
!stylesheetRoot->getOmitOutputXMLDecl(),
stylesheetRoot->getOutputStandalone(outputStandalone)
)