summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbachart.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-01-17 15:28:11 +0100
committerThomas Arnhold <thomas@arnhold.org>2012-01-17 17:01:26 +0100
commit804e86170ff2570fd3826b4ac26d1c927e751ac3 (patch)
tree0c24d6df02314b38dc17650030da80419a94b6b2 /sc/source/ui/vba/vbachart.cxx
parent3c8478e26bde41c35c75557d985f5734d8d1a2bd (diff)
remove unused methods
Diffstat (limited to 'sc/source/ui/vba/vbachart.cxx')
-rw-r--r--sc/source/ui/vba/vbachart.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/source/ui/vba/vbachart.cxx b/sc/source/ui/vba/vbachart.cxx
index beaa45702743..94d290057fe3 100644
--- a/sc/source/ui/vba/vbachart.cxx
+++ b/sc/source/ui/vba/vbachart.cxx
@@ -1061,18 +1061,6 @@ ScVbaChart::isSeriesIndexValid(sal_Int32 _seriesindex) throw( script::BasicError
return bret;
}
-bool
-ScVbaChart::areIndicesValid( sal_Int32 _seriesindex, sal_Int32 _valindex) throw ( css::script::BasicErrorException )
-{
- if (isSeriesIndexValid(_seriesindex))
- {
- uno::Reference< chart::XChartDataArray > xChartDataArray( mxChartDocument->getData(), uno::UNO_QUERY_THROW );
- dblValues = xChartDataArray->getData();
- return (_valindex < dblValues[_seriesindex].getLength() );
- }
- return false;
-}
-
uno::Reference< beans::XPropertySet >
ScVbaChart::getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( script::BasicErrorException )