summaryrefslogtreecommitdiff
path: root/writerperfect/source/writer/exp/txtstyli.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source/writer/exp/txtstyli.cxx')
-rw-r--r--writerperfect/source/writer/exp/txtstyli.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/writerperfect/source/writer/exp/txtstyli.cxx b/writerperfect/source/writer/exp/txtstyli.cxx
index b8b84c03410c..02d2bb206e4b 100644
--- a/writerperfect/source/writer/exp/txtstyli.cxx
+++ b/writerperfect/source/writer/exp/txtstyli.cxx
@@ -290,21 +290,21 @@ rtl::Reference<XMLImportContext> XMLStyleContext::CreateChildContext(
const OUString& rName, const css::uno::Reference<css::xml::sax::XAttributeList>& /*xAttribs*/)
{
if (rName == "style:paragraph-properties")
- return new XMLParagraphPropertiesContext(mrImport, *this);
+ return new XMLParagraphPropertiesContext(GetImport(), *this);
if (rName == "style:text-properties")
- return new XMLTextPropertiesContext(mrImport, *this);
+ return new XMLTextPropertiesContext(GetImport(), *this);
if (rName == "style:table-cell-properties")
- return new XMLTableCellPropertiesContext(mrImport, *this);
+ return new XMLTableCellPropertiesContext(GetImport(), *this);
if (rName == "style:table-column-properties")
- return new XMLTableColumnPropertiesContext(mrImport, *this);
+ return new XMLTableColumnPropertiesContext(GetImport(), *this);
if (rName == "style:table-row-properties")
- return new XMLTableRowPropertiesContext(mrImport, *this);
+ return new XMLTableRowPropertiesContext(GetImport(), *this);
if (rName == "style:table-properties")
- return new XMLTablePropertiesContext(mrImport, *this);
+ return new XMLTablePropertiesContext(GetImport(), *this);
if (rName == "style:graphic-properties")
- return new XMLGraphicPropertiesContext(mrImport, *this);
+ return new XMLGraphicPropertiesContext(GetImport(), *this);
if (rName == "style:page-layout-properties")
- return new XMLPageLayoutPropertiesContext(mrImport, *this);
+ return new XMLPageLayoutPropertiesContext(GetImport(), *this);
return nullptr;
}