summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/sdxmlexp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw/sdxmlexp.cxx')
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx6
1 files changed, 3 insertions, 3 deletions
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() );
}