summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/core/xmluconv.cxx2
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx6
-rw-r--r--xmloff/source/text/txtparae.cxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx
index 6e8670d4d4d2..e63bb1fae8d7 100644
--- a/xmloff/source/core/xmluconv.cxx
+++ b/xmloff/source/core/xmluconv.cxx
@@ -796,7 +796,7 @@ OUString SvXMLUnitConverter::encodeStyleName(
{
if (!m_pImpl->m_xCharClass.is())
{
- this->m_pImpl->m_xCharClass = CharacterClassification::create( m_pImpl->m_xContext );
+ m_pImpl->m_xCharClass = CharacterClassification::create( m_pImpl->m_xContext );
}
sal_Int16 nType = m_pImpl->m_xCharClass->getType(rName, i);
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index 19ac452fb2a7..0d0c02a9daa6 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -2649,7 +2649,7 @@ void SdXMLExport::exportAnnotations( const Reference<XDrawPage>& xDrawPage )
if( !aAuthor.isEmpty() )
{
SvXMLElementExport aCreatorElem( *this, XML_NAMESPACE_DC, XML_CREATOR, true, false );
- this->Characters(aAuthor);
+ Characters(aAuthor);
}
// initials
@@ -2658,7 +2658,7 @@ void SdXMLExport::exportAnnotations( const Reference<XDrawPage>& xDrawPage )
{
SvXMLElementExport aInitialsElem( *this, XML_NAMESPACE_LO_EXT,
XML_SENDER_INITIALS, true, false );
- this->Characters(aInitials);
+ Characters(aInitials);
}
{
@@ -2671,7 +2671,7 @@ void SdXMLExport::exportAnnotations( const Reference<XDrawPage>& xDrawPage )
css::uno::Reference < css::text::XText > xText( xAnnotation->getTextRange() );
if( xText.is() )
- this->GetTextParagraphExport()->exportText( xText );
+ GetTextParagraphExport()->exportText( xText );
}
while( xAnnotationEnumeration->hasMoreElements() );
}
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index 5ca9e5953892..e6ce3a0c453c 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -1165,7 +1165,7 @@ XMLTextParagraphExport::XMLTextParagraphExport(
pBoundFrameSets(new BoundFrameSets(GetExport().GetModel())),
pFieldExport( nullptr ),
pListElements( nullptr ),
- maListAutoPool( this->GetExport() ),
+ maListAutoPool( GetExport() ),
pSectionExport( nullptr ),
pIndexMarkExport( nullptr ),
pRedlineExport( nullptr ),