summaryrefslogtreecommitdiff
path: root/writerperfect/source/writer/exp/XMLSectionContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source/writer/exp/XMLSectionContext.cxx')
-rw-r--r--writerperfect/source/writer/exp/XMLSectionContext.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerperfect/source/writer/exp/XMLSectionContext.cxx b/writerperfect/source/writer/exp/XMLSectionContext.cxx
index bf88d0e174fb..dbd1f9663539 100644
--- a/writerperfect/source/writer/exp/XMLSectionContext.cxx
+++ b/writerperfect/source/writer/exp/XMLSectionContext.cxx
@@ -26,19 +26,19 @@ XMLSectionContext::XMLSectionContext(XMLImport& rImport)
rtl::Reference<XMLImportContext> XMLSectionContext::CreateChildContext(
const OUString& rName, const css::uno::Reference<css::xml::sax::XAttributeList>& /*xAttribs*/)
{
- return CreateTextChildContext(mrImport, rName);
+ return CreateTextChildContext(GetImport(), rName);
}
void XMLSectionContext::startElement(
const OUString& /*rName*/,
const css::uno::Reference<css::xml::sax::XAttributeList>& /*xAttribs*/)
{
- mrImport.GetGenerator().openSection(librevenge::RVNGPropertyList());
+ GetImport().GetGenerator().openSection(librevenge::RVNGPropertyList());
}
void XMLSectionContext::endElement(const OUString& /*rName*/)
{
- mrImport.GetGenerator().closeSection();
+ GetImport().GetGenerator().closeSection();
}
} // namespace exp