summaryrefslogtreecommitdiff
path: root/xmloff/source/text/txtstyli.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/txtstyli.cxx')
-rw-r--r--xmloff/source/text/txtstyli.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/text/txtstyli.cxx b/xmloff/source/text/txtstyli.cxx
index b03e0382c73f..5f0a9fb2231d 100644
--- a/xmloff/source/text/txtstyli.cxx
+++ b/xmloff/source/text/txtstyli.cxx
@@ -145,12 +145,12 @@ XMLTextStyleContext::XMLTextStyleContext( SvXMLImport& rImport,
XMLTextStyleContext::~XMLTextStyleContext()
{}
-SvXMLImportContext *XMLTextStyleContext::CreateChildContext(
+SvXMLImportContextRef XMLTextStyleContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
const Reference< XAttributeList > & xAttrList )
{
- SvXMLImportContext *pContext = nullptr;
+ SvXMLImportContextRef xContext;
if( XML_NAMESPACE_STYLE == nPrefix )
{
@@ -170,7 +170,7 @@ SvXMLImportContext *XMLTextStyleContext::CreateChildContext(
rtl::Reference < SvXMLImportPropertyMapper > xImpPrMap =
GetStyles()->GetImportPropertyMapper( GetFamily() );
if( xImpPrMap.is() )
- pContext = new XMLTextPropertySetContext( GetImport(), nPrefix,
+ xContext = new XMLTextPropertySetContext( GetImport(), nPrefix,
rLocalName, xAttrList,
nFamily,
GetProperties(),
@@ -185,14 +185,14 @@ SvXMLImportContext *XMLTextStyleContext::CreateChildContext(
// (for delayed processing of events)
m_xEventContext.set(new XMLEventsImportContext( GetImport(), nPrefix,
rLocalName));
- pContext = m_xEventContext.get();
+ xContext = m_xEventContext.get();
}
- if( !pContext )
- pContext = XMLPropStyleContext::CreateChildContext( nPrefix, rLocalName,
+ if (!xContext)
+ xContext = XMLPropStyleContext::CreateChildContext( nPrefix, rLocalName,
xAttrList );
- return pContext;
+ return xContext;
}
void XMLTextStyleContext::CreateAndInsert( bool bOverwrite )