diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-02 11:25:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-02 14:11:49 +0100 |
commit | 2764c334c3b9cf428e4e7ab0c28ce6a34036fa77 (patch) | |
tree | 0ea20bb119291240ca34c9ef7035503c0bd81bc8 /xmloff/source/draw/ximpshap.cxx | |
parent | d4892e5452bff155da6c34063ffe8c331284d8e9 (diff) |
drop the SvXMLExport::Characters method..
in favour of just using the characters() method
Change-Id: Iecb2773d488fcf4fa3c2202d0e889015a288fe2a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105174
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/draw/ximpshap.cxx')
-rw-r--r-- | xmloff/source/draw/ximpshap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx index e0e467b31501..2f84f80d09dc 100644 --- a/xmloff/source/draw/ximpshap.cxx +++ b/xmloff/source/draw/ximpshap.cxx @@ -2586,10 +2586,10 @@ void SdXMLChartShapeContext::EndElement() SdXMLShapeContext::EndElement(); } -void SdXMLChartShapeContext::Characters( const OUString& rChars ) +void SdXMLChartShapeContext::characters( const OUString& rChars ) { if( mxChartContext.is() ) - mxChartContext->Characters( rChars ); + mxChartContext->characters( rChars ); } SvXMLImportContextRef SdXMLChartShapeContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, |