diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-04-10 17:03:50 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-04-11 16:56:38 +0200 |
commit | 87713a4743dbc562227bf25f0232b24d56fcc265 (patch) | |
tree | 302e3743c996293a280b1600f87af08c564ba00e /xmloff | |
parent | a730dc1b566565472ea7e4b94f0dea9705d0a809 (diff) |
xmloff: rename one overloaded XMLTextParagraphExport::exportText
... to exportCharacterData. The others all export XTexts.
Change-Id: Ic4b1d6364c15d99d839e2736d4c2966d7aa302d4
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index c64d8662794a..c9b64568d4fe 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -3329,7 +3329,7 @@ void XMLTextParagraphExport::exportTextRangeSpan( SvXMLElementExport aElem2( GetExport(), TEXT == openFieldMark, XML_NAMESPACE_TEXT, XML_TEXT_INPUT, false, false ); - exportText( aText, rPrevCharIsSpace ); + exportCharacterData(aText, rPrevCharIsSpace); openFieldMark = NONE; } } @@ -3384,7 +3384,7 @@ void XMLTextParagraphExport::exportTextRange( } } -void XMLTextParagraphExport::exportText( const OUString& rText, +void XMLTextParagraphExport::exportCharacterData(const OUString& rText, bool& rPrevCharIsSpace ) { sal_Int32 nExpStartPos = 0; |