summaryrefslogtreecommitdiff
path: root/chart2/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-10-05 13:13:06 +0200
committerNoel Grandin <noel@peralex.com>2016-10-05 13:13:06 +0200
commit708253a21474cc3797c65d6f053760ab9c3299a3 (patch)
tree176385abd4fca161b13ea76aee28b59730567cf1 /chart2/source
parent1e3996ce83b786fc61cedda0ec8f9a9ad358f032 (diff)
loplugin:unnecessaryoverride in accessibility..chart2
Change-Id: I14ba52fe8352f8bbdfcaa90177f4f3ac9f0e08b1
Diffstat (limited to 'chart2/source')
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx6
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx3
-rw-r--r--chart2/source/controller/dialogs/tp_ChartType.cxx16
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.cxx5
-rw-r--r--chart2/source/controller/dialogs/tp_Scale.hxx2
-rw-r--r--chart2/source/view/charttypes/BubbleChart.cxx5
-rw-r--r--chart2/source/view/charttypes/BubbleChart.hxx2
-rw-r--r--chart2/source/view/charttypes/NetChart.cxx5
-rw-r--r--chart2/source/view/charttypes/NetChart.hxx1
9 files changed, 0 insertions, 45 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx b/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx
index ce85f0f42d8b..fb1fa0360d4d 100644
--- a/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx
+++ b/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.cxx
@@ -101,12 +101,6 @@ Any WrappedD3DTransformMatrixProperty::getPropertyValue( const Reference< beans:
return WrappedProperty::getPropertyValue( xInnerPropertySet );
}
-Any WrappedD3DTransformMatrixProperty::getPropertyDefault( const Reference< beans::XPropertyState >& xInnerPropertyState ) const
- throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
-{
- return WrappedProperty::getPropertyDefault( xInnerPropertyState );
-}
-
} //namespace wrapper
} //namespace chart
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx b/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx
index 7e33bd9a5aae..36564addd3c2 100644
--- a/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx
+++ b/chart2/source/controller/chartapiwrapper/WrappedSceneProperty.hxx
@@ -50,9 +50,6 @@ public:
virtual css::uno::Any getPropertyValue( const css::uno::Reference< css::beans::XPropertySet >& xInnerPropertySet ) const
throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException) override;
- virtual css::uno::Any getPropertyDefault( const css::uno::Reference< css::beans::XPropertyState >& xInnerPropertyState ) const
- throw (css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException) override;
-
private:
std::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
};
diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx b/chart2/source/controller/dialogs/tp_ChartType.cxx
index 99447ea1ff61..fc1c9be99a7e 100644
--- a/chart2/source/controller/dialogs/tp_ChartType.cxx
+++ b/chart2/source/controller/dialogs/tp_ChartType.cxx
@@ -316,8 +316,6 @@ public:
void fillControls( const ChartTypeParameter& rParameter );
void fillParameter( ChartTypeParameter& rParameter, bool bSmoothLines );
- virtual void StateChanged( StateChangedType nType ) override;
-
private:
DECL_LINK( SplineTypeListBoxHdl, ListBox&, void );
@@ -354,11 +352,6 @@ void SplinePropertiesDialog::dispose()
ModalDialog::dispose();
}
-void SplinePropertiesDialog::StateChanged( StateChangedType nType )
-{
- Dialog::StateChanged( nType );
-}
-
void SplinePropertiesDialog::fillControls( const ChartTypeParameter& rParameter )
{
switch(rParameter.eCurveStyle)
@@ -408,10 +401,6 @@ public:
void fillControls( const ChartTypeParameter& rParameter );
void fillParameter( ChartTypeParameter& rParameter, bool bSteppedLines );
- virtual void StateChanged( StateChangedType nType ) override;
-
-private:
-
private:
VclPtr<RadioButton> m_pRB_Start;
VclPtr<RadioButton> m_pRB_End;
@@ -439,11 +428,6 @@ void SteppedPropertiesDialog::dispose()
ModalDialog::dispose();
}
-void SteppedPropertiesDialog::StateChanged( StateChangedType nType )
-{
- Dialog::StateChanged( nType );
-}
-
void SteppedPropertiesDialog::fillControls( const ChartTypeParameter& rParameter )
{
switch(rParameter.eCurveStyle)
diff --git a/chart2/source/controller/dialogs/tp_Scale.cxx b/chart2/source/controller/dialogs/tp_Scale.cxx
index 3edb725029ac..c588718120b5 100644
--- a/chart2/source/controller/dialogs/tp_Scale.cxx
+++ b/chart2/source/controller/dialogs/tp_Scale.cxx
@@ -164,11 +164,6 @@ IMPL_STATIC_LINK(
rFmtField.SetDefaultValue( rFmtField.GetValue() );
}
-void ScaleTabPage::StateChanged( StateChangedType nType )
-{
- TabPage::StateChanged( nType );
-}
-
void ScaleTabPage::EnableControls()
{
bool bValueAxis = chart2::AxisType::REALNUMBER == m_nAxisType
diff --git a/chart2/source/controller/dialogs/tp_Scale.hxx b/chart2/source/controller/dialogs/tp_Scale.hxx
index 2eb856017aa7..33a58582a508 100644
--- a/chart2/source/controller/dialogs/tp_Scale.hxx
+++ b/chart2/source/controller/dialogs/tp_Scale.hxx
@@ -47,8 +47,6 @@ public:
void ShowAxisOrigin( bool bShowOrigin );
- virtual void StateChanged( StateChangedType nType ) override;
-
private:
VclPtr<CheckBox> m_pCbxReverse;
VclPtr<CheckBox> m_pCbxLogarithm;
diff --git a/chart2/source/view/charttypes/BubbleChart.cxx b/chart2/source/view/charttypes/BubbleChart.cxx
index df523dd9226d..a9e9dabfc111 100644
--- a/chart2/source/view/charttypes/BubbleChart.cxx
+++ b/chart2/source/view/charttypes/BubbleChart.cxx
@@ -159,11 +159,6 @@ drawing::Direction3D BubbleChart::getPreferredDiagramAspectRatio() const
return drawing::Direction3D(-1,-1,-1);
}
-void BubbleChart::addSeries( VDataSeries* pSeries, sal_Int32 zSlot, sal_Int32 xSlot, sal_Int32 ySlot )
-{
- VSeriesPlotter::addSeries( pSeries, zSlot, xSlot, ySlot );
-}
-
//better performance for big data
struct FormerPoint
{
diff --git a/chart2/source/view/charttypes/BubbleChart.hxx b/chart2/source/view/charttypes/BubbleChart.hxx
index ab24ac69cce3..6958e54d87ff 100644
--- a/chart2/source/view/charttypes/BubbleChart.hxx
+++ b/chart2/source/view/charttypes/BubbleChart.hxx
@@ -37,8 +37,6 @@ public:
virtual void createShapes() override;
- virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
-
virtual css::drawing::Direction3D getPreferredDiagramAspectRatio() const override;
// MinimumAndMaximumSupplier
diff --git a/chart2/source/view/charttypes/NetChart.cxx b/chart2/source/view/charttypes/NetChart.cxx
index 72777ddd6931..b69a4750a467 100644
--- a/chart2/source/view/charttypes/NetChart.cxx
+++ b/chart2/source/view/charttypes/NetChart.cxx
@@ -116,11 +116,6 @@ drawing::Direction3D NetChart::getPreferredDiagramAspectRatio() const
return drawing::Direction3D(1,1,1);
}
-void NetChart::addSeries( VDataSeries* pSeries, sal_Int32 zSlot, sal_Int32 xSlot, sal_Int32 ySlot )
-{
- VSeriesPlotter::addSeries( pSeries, zSlot, xSlot, ySlot );
-}
-
bool NetChart::impl_createLine( VDataSeries* pSeries
, drawing::PolyPolygonShape3D* pSeriesPoly
, PlottingPositionHelper* pPosHelper )
diff --git a/chart2/source/view/charttypes/NetChart.hxx b/chart2/source/view/charttypes/NetChart.hxx
index c0b22c3ee439..bc4d7af8d676 100644
--- a/chart2/source/view/charttypes/NetChart.hxx
+++ b/chart2/source/view/charttypes/NetChart.hxx
@@ -39,7 +39,6 @@ public:
virtual ~NetChart() override;
virtual void createShapes() override;
- virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
virtual css::drawing::Direction3D getPreferredDiagramAspectRatio() const override;