From f56dfcb7a23833520de4ee6c75783e29ef61e01d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Wed, 25 Jul 2007 08:04:54 +0000 Subject: [PATCH] INTEGRATION: CWS chart07 (1.15.12); FILE MERGED 2007/07/10 13:49:01 bm 1.15.12.1: #i69281# warnings removed --- chart2/source/view/charttypes/PieChart.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx index 0cb2b9789d93..caf2293c494c 100644 --- a/chart2/source/view/charttypes/PieChart.cxx +++ b/chart2/source/view/charttypes/PieChart.cxx @@ -4,9 +4,9 @@ * * $RCSfile: PieChart.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: vg $ $Date: 2007-05-22 19:16:08 $ + * last change: $Author: rt $ $Date: 2007-07-25 09:04:54 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -168,7 +168,7 @@ PieChart::~PieChart() //----------------------------------------------------------------- void SAL_CALL PieChart::setScales( const uno::Sequence< ExplicitScaleData >& rScales - , sal_Bool bSwapXAndYAxis ) + , sal_Bool /* bSwapXAndYAxis */ ) throw (uno::RuntimeException) { DBG_ASSERT(m_nDimension<=rScales.getLength(),"Dimension of Plotter does not fit two dimension of given scale sequence"); @@ -255,7 +255,7 @@ uno::Reference< drawing::XShape > PieChart::createDataPoint( return xShape; } -void PieChart::addSeries( VDataSeries* pSeries, sal_Int32 zSlot, sal_Int32 xSlot, sal_Int32 ySlot ) +void PieChart::addSeries( VDataSeries* pSeries, sal_Int32 /* zSlot */, sal_Int32 /* xSlot */, sal_Int32 /* ySlot */ ) { VSeriesPlotter::addSeries( pSeries, 0, -1, 0 ); } @@ -310,37 +310,37 @@ double PieChart::getMaximumX() return m_aZSlots[0].size()+0.5+fMaxOffset; return 1.5+fMaxOffset; } -double PieChart::getMinimumYInRange( double fMinimumX, double fMaximumX, sal_Int32 nAxisIndex ) +double PieChart::getMinimumYInRange( double /* fMinimumX */, double /* fMaximumX */, sal_Int32 /* nAxisIndex */ ) { return 0.0; } -double PieChart::getMaximumYInRange( double fMinimumX, double fMaximumX, sal_Int32 nAxisIndex ) +double PieChart::getMaximumYInRange( double /* fMinimumX */, double /* fMaximumX */, sal_Int32 /* nAxisIndex */ ) { return 1.0; } -bool PieChart::isExpandBorderToIncrementRhythm( sal_Int32 nDimensionIndex ) +bool PieChart::isExpandBorderToIncrementRhythm( sal_Int32 /* nDimensionIndex */ ) { return false; } -bool PieChart::isExpandIfValuesCloseToBorder( sal_Int32 nDimensionIndex ) +bool PieChart::isExpandIfValuesCloseToBorder( sal_Int32 /* nDimensionIndex */ ) { return false; } -bool PieChart::isExpandWideValuesToZero( sal_Int32 nDimensionIndex ) +bool PieChart::isExpandWideValuesToZero( sal_Int32 /* nDimensionIndex */ ) { return false; } -bool PieChart::isExpandNarrowValuesTowardZero( sal_Int32 nDimensionIndex ) +bool PieChart::isExpandNarrowValuesTowardZero( sal_Int32 /* nDimensionIndex */ ) { return false; } -bool PieChart::isSeperateStackingForDifferentSigns( sal_Int32 nDimensionIndex ) +bool PieChart::isSeperateStackingForDifferentSigns( sal_Int32 /* nDimensionIndex */ ) { return false; }