diff options
author | Tamas Bunth <tamas.bunth@collabora.co.uk> | 2020-01-02 12:55:16 +0100 |
---|---|---|
committer | Tamás Bunth <btomi96@gmail.com> | 2020-01-02 14:38:12 +0100 |
commit | 2c7ef73e99dcecb6c86bcbf19135b89ad9e7db3a (patch) | |
tree | a36f7b008de5c5f566e8f775c2a2c0a744dd8c3c /xmloff | |
parent | 1444802ed8ec02d2c0ce4f608bdea67a5b0acdde (diff) |
tdf#123206 Add test: import custom-label-field
Add test for deprecated custom-label-field attribute of the data-point
element.
Change-Id: I9a7619898fa72900323e5b41728d2146c14203e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86103
Tested-by: Jenkins
Reviewed-by: Tamás Bunth <btomi96@gmail.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLPlotAreaContext.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx b/xmloff/source/chart/SchXMLPlotAreaContext.cxx index 9767efd933dc..f488244e142f 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx @@ -702,6 +702,8 @@ void SchXMLDataPointContext::StartElement( const uno::Reference< xml::sax::XAttr } else if( nPrefix == XML_NAMESPACE_LO_EXT) { + // Deprecated. New documents use the chart:data-label element + // instead in order to store custom label text. if( IsXMLToken( aLocalName, XML_CUSTOM_LABEL_FIELD) && !mbHasLabelParagraph) { sCustomLabelField = xAttrList->getValueByIndex( i ); |