summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLTools.cxx32
-rw-r--r--xmloff/source/chart/SchXMLTools.hxx7
2 files changed, 0 insertions, 39 deletions
diff --git a/xmloff/source/chart/SchXMLTools.cxx b/xmloff/source/chart/SchXMLTools.cxx
index cc6a796b340f..bc0b6bedab6c 100644
--- a/xmloff/source/chart/SchXMLTools.cxx
+++ b/xmloff/source/chart/SchXMLTools.cxx
@@ -604,38 +604,6 @@ void exportRangeToSomewhere( SvXMLExport& rExport, const OUString& rValue )
rExport.GetDocHandler()->characters( rValue );
}
-Reference< chart2::XRegressionCurve > getRegressionCurve(
- const Reference< chart2::XDataSeries > & xDataSeries )
-{
- Reference< chart2::XRegressionCurve > xResult;
-
- Reference< chart2::XRegressionCurveContainer > xRegCurveCnt( xDataSeries, uno::UNO_QUERY );
- if( xRegCurveCnt.is())
- {
- // find equation properties of first regression curve
- Sequence< Reference< chart2::XRegressionCurve > > aCurveSeq(
- xRegCurveCnt->getRegressionCurves() );
- for( sal_Int32 nI=0; nI<aCurveSeq.getLength(); ++nI )
- {
- // skip mean-value line
- Reference< lang::XServiceName > xServiceName( aCurveSeq[nI], uno::UNO_QUERY );
- if( xServiceName.is())
- {
- OUString aServiceName( xServiceName->getServiceName());
- if( aServiceName == "com.sun.star.chart2.MeanValueRegressionCurve" )
- continue;
- }
- // take first non-empty curve
- if( aCurveSeq[nI].is())
- {
- xResult.set( aCurveSeq[nI] );
- break;
- }
- }
- }
- return xResult;
-}
-
void setXMLRangePropertyAtDataSequence(
const Reference< chart2::data::XDataSequence > & xDataSequence,
const OUString & rXMLRange )
diff --git a/xmloff/source/chart/SchXMLTools.hxx b/xmloff/source/chart/SchXMLTools.hxx
index e50d7f523fe2..4fd373c67231 100644
--- a/xmloff/source/chart/SchXMLTools.hxx
+++ b/xmloff/source/chart/SchXMLTools.hxx
@@ -99,13 +99,6 @@ namespace SchXMLTools
void exportRangeToSomewhere( SvXMLExport& rExport, const OUString& rValue );
- /** returns the properties of the equation of the first regression curve
- that is no mean-value line
- */
- ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XRegressionCurve > getRegressionCurve(
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::XDataSeries > & xDataSeries );
-
/** checks if the data sequence has the property "CachedXMLRange" (true for
internal data sequences), and if so sets this property to the range
given in rXMLRange