summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-04-10 17:03:50 +0200
committerMichael Stahl <mstahl@redhat.com>2017-04-11 16:56:38 +0200
commit87713a4743dbc562227bf25f0232b24d56fcc265 (patch)
tree302e3743c996293a280b1600f87af08c564ba00e /reportdesign
parenta730dc1b566565472ea7e4b94f0dea9705d0a809 (diff)
xmloff: rename one overloaded XMLTextParagraphExport::exportText
... to exportCharacterData. The others all export XTexts. Change-Id: Ic4b1d6364c15d99d839e2736d4c2966d7aa302d4
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/filter/xml/xmlExport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/filter/xml/xmlExport.cxx b/reportdesign/source/filter/xml/xmlExport.cxx
index 6d8707c336a0..4438e99028a2 100644
--- a/reportdesign/source/filter/xml/xmlExport.cxx
+++ b/reportdesign/source/filter/xml/xmlExport.cxx
@@ -1423,7 +1423,7 @@ void ORptExport::exportParagraph(const Reference< XReportControlModel >& _xRepor
sToken = sToken.copy(1,sToken.getLength()-2);
bool bPrevCharIsSpace = false;
- GetTextParagraphExport()->exportText(sToken,bPrevCharIsSpace);
+ GetTextParagraphExport()->exportCharacterData(sToken, bPrevCharIsSpace);
}
}
}
@@ -1435,7 +1435,7 @@ void ORptExport::exportParagraph(const Reference< XReportControlModel >& _xRepor
{
OUString sExpr = xFT->getLabel();
bool bPrevCharIsSpace = false;
- GetTextParagraphExport()->exportText(sExpr,bPrevCharIsSpace);
+ GetTextParagraphExport()->exportCharacterData(sExpr, bPrevCharIsSpace);
}
}