summaryrefslogtreecommitdiff
path: root/xmloff/source/style
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2020-05-12 14:32:05 +0200
committerMichael Stahl <michael.stahl@cib.de>2020-05-19 10:21:44 +0200
commit58c013516694b1083abdbc76300ed003f6a456c5 (patch)
tree072ef5adf37f27823bd371ff5f28b70d90516d66 /xmloff/source/style
parent444c7c736be7545344298a9cbb3a69886edc5ecb (diff)
xmloff: ODF export: additional ODF 1.3 chart features
* OFFICE-3662 chart:interpolation additional values * OFFICE-3958 chart regression curve: polynomial * OFFICE-3959 chart regression curve: moving-average None of these are exported in ODF 1.2 extended because they require additional values for standard attributes, which isn't valid. Change-Id: I920cc44dbde46687b570c1296c7d8926f0a1a9c6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94064 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'xmloff/source/style')
-rw-r--r--xmloff/source/style/xmlstyle.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlstyle.cxx b/xmloff/source/style/xmlstyle.cxx
index 8b8745d6325f..2c4fe5f01912 100644
--- a/xmloff/source/style/xmlstyle.cxx
+++ b/xmloff/source/style/xmlstyle.cxx
@@ -642,7 +642,7 @@ rtl::Reference < SvXMLImportPropertyMapper > SvXMLStylesContext::GetImportProper
case XmlStyleFamily::SCH_CHART_ID:
if( ! mxChartImpPropMapper.is() )
{
- XMLPropertySetMapper *pPropMapper = new XMLChartPropertySetMapper( false );
+ XMLPropertySetMapper *const pPropMapper = new XMLChartPropertySetMapper(nullptr);
mxChartImpPropMapper = new XMLChartImportPropertyMapper( pPropMapper, GetImport() );
}
xMapper = mxChartImpPropMapper;