From 87713a4743dbc562227bf25f0232b24d56fcc265 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 10 Apr 2017 17:03:50 +0200 Subject: xmloff: rename one overloaded XMLTextParagraphExport::exportText ... to exportCharacterData. The others all export XTexts. Change-Id: Ic4b1d6364c15d99d839e2736d4c2966d7aa302d4 --- xmloff/source/text/txtparae.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmloff') 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; -- cgit