diff options
Diffstat (limited to 'writerperfect/source/writer/exp/xmltext.cxx')
-rw-r--r-- | writerperfect/source/writer/exp/xmltext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/writer/exp/xmltext.cxx b/writerperfect/source/writer/exp/xmltext.cxx index 14c5b306dd99..3902e15ae839 100644 --- a/writerperfect/source/writer/exp/xmltext.cxx +++ b/writerperfect/source/writer/exp/xmltext.cxx @@ -26,12 +26,12 @@ XMLBodyContentContext::XMLBodyContentContext(XMLImport &rImport) { } -XMLImportContext *XMLBodyContentContext::CreateChildContext(const OUString &rName, const css::uno::Reference<css::xml::sax::XAttributeList> &/*xAttribs*/) +rtl::Reference<XMLImportContext> XMLBodyContentContext::CreateChildContext(const OUString &rName, const css::uno::Reference<css::xml::sax::XAttributeList> &/*xAttribs*/) { return CreateTextChildContext(mrImport, rName); } -XMLImportContext *CreateTextChildContext(XMLImport &rImport, const OUString &rName) +rtl::Reference<XMLImportContext> CreateTextChildContext(XMLImport &rImport, const OUString &rName) { if (rName == "text:p" || rName == "text:h") return new XMLParaContext(rImport); |