diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-02-03 05:25:10 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-02-03 05:31:25 +0100 |
commit | 3d3204be2c1c8c3aded94cdf3d2ead7958c8b2f1 (patch) | |
tree | c8f15f537333e838f1271adc23ed32b37fce89ff /sc/source | |
parent | bd76d319bbda17f242e64b042027077e84c0f1d9 (diff) |
fix previous commit
Change-Id: I3e3b0cf703162b5f01148aced9a1d5faabb5d50d
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/xml/xmldpimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/xmldpimp.cxx b/sc/source/filter/xml/xmldpimp.cxx index 891db2223f1a..56d7340403e7 100644 --- a/sc/source/filter/xml/xmldpimp.cxx +++ b/sc/source/filter/xml/xmldpimp.cxx @@ -732,7 +732,7 @@ SvXMLImportContext *ScXMLDPSourceQueryContext::CreateChildContext( sal_uInt16 nP const OUString& rLName, const css::uno::Reference<css::xml::sax::XAttributeList>& /* xAttrList */ ) { - return pContext = new SvXMLImportContext( GetImport(), nPrefix, rLName ); + return new SvXMLImportContext( GetImport(), nPrefix, rLName ); } void ScXMLDPSourceQueryContext::EndElement() |