summaryrefslogtreecommitdiff
path: root/chart2/source/controller
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller')
-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
5 files changed, 0 insertions, 32 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;