summaryrefslogtreecommitdiff
path: root/writerperfect/source/writer/exp/XMLSectionContext.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-04-16 21:31:05 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-04-17 09:05:09 +0200
commit9a0934babd347c579c7f5f5c4094800cdc239063 (patch)
treec316e27911b9b913ad85eaf828c3ee07b4ab1767 /writerperfect/source/writer/exp/XMLSectionContext.cxx
parent3f59a2df61620fbb7216fc66780620f142d81e66 (diff)
EPUB export: make member variable private
In most cases these were public without a good reason, in other cases setter / getters are added. Change-Id: Id6c1032189db1bba211344162e737dabf7ff3f07 Reviewed-on: https://gerrit.libreoffice.org/70842 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
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