summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-01-22 12:14:34 +0100
committerMichael Stahl <mstahl@redhat.com>2015-01-22 13:58:10 +0100
commit825e4995220209362c13ed5f07c98e43a5f456de (patch)
treee98c42ec9a76c5a04b30888de7bc03b40a62ec3e /writerfilter
parentc71f888590a4864de96290c06e952bd0a40e7ee7 (diff)
writerfilter: set the SystemId to get stream name in SAXExceptions
Change-Id: I9891269a765ace15497a3cd3b1729be941bc3c1b
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLDocumentImpl.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
index 80c508ab9c1f..7f3508e6bea4 100644
--- a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
+++ b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
@@ -494,6 +494,7 @@ void OOXMLDocumentImpl::resolve(Stream & rStream)
xParser->setTokenHandler( xTokenHandler );
xml::sax::InputSource aParserInput;
+ aParserInput.sSystemId = mpStream->getTarget();
aParserInput.aInputStream = mpStream->getDocumentStream();
try
{