summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/SchXMLExport.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <quikee@gmail.com>2013-06-09 12:07:16 +0200
committerTomaž Vajngerl <quikee@gmail.com>2013-07-03 21:46:42 +0200
commitdd5c0b2db451ff4d6fac7a72770758513583d468 (patch)
treed37936aeffdb95f8521be0081cb37b2cc08e79d8 /xmloff/source/chart/SchXMLExport.cxx
parent2ca5e7b46f965faa0408128cd5881703fbb6cd94 (diff)
Added new regression curve properties as ODT 1.2 extended.
Added: - regression-extrapolate-forward - regression-extrapolate-backward - regression-max-degree - regression-min-degree - regression-moving-type - regression-period - regression-force-intercept - regression-intercept-value Not all of these are yet filled as they are not yet implemented. Change-Id: I7ac39c0df5b8b7fb7be6b32d301e33a7f49f2960
Diffstat (limited to 'xmloff/source/chart/SchXMLExport.cxx')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index a58524d42100..7f766ff95ed6 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -227,12 +227,10 @@ public:
const ::com::sun::star::uno::Reference<
::com::sun::star::chart2::XDiagram > & xDiagram,
sal_Bool bExportContent );
+
void exportRegressionCurve(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::XDataSeries > & xSeries,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::beans::XPropertySet > & xSeriesProp,
- const ::com::sun::star::awt::Size & rPageSize,
+ const com::sun::star::uno::Reference<com::sun::star::chart2::XDataSeries>& xSeries,
+ const com::sun::star::awt::Size& rPageSize,
sal_Bool bExportContent );
void exportErrorBar (
@@ -2887,7 +2885,7 @@ void SchXMLExportHelper_Impl::exportSeries(
if( xPropSet.is() &&
mxExpPropMapper.is() )
{
- exportRegressionCurve( aSeriesSeq[nSeriesIdx], xPropSet, rPageSize, bExportContent );
+ exportRegressionCurve( aSeriesSeq[nSeriesIdx], rPageSize, bExportContent );
}
exportErrorBar( xPropSet,false, bExportContent ); // X ErrorBar
@@ -2909,7 +2907,6 @@ void SchXMLExportHelper_Impl::exportSeries(
void SchXMLExportHelper_Impl::exportRegressionCurve(
const Reference< chart2::XDataSeries >& xSeries,
- const Reference< beans::XPropertySet >& xSeriesProp,
const awt::Size& rPageSize,
sal_Bool bExportContent )
{