diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-05-09 14:45:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-05-09 21:01:50 +0200 |
commit | db9fecd377bbba373ca0818f90182f262f1360da (patch) | |
tree | 448a95f003120aba9df6e201e690e9e25336e978 /chart2/source/tools | |
parent | c338638eeabbc959a4d71e04774365e628a093c2 (diff) |
Drop redundant explicit initialization of MutexContainer base class
Change-Id: I028a34626f4e542d01f6ae7cd90fed5a24ad970d
Reviewed-on: https://gerrit.libreoffice.org/72044
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'chart2/source/tools')
-rw-r--r-- | chart2/source/tools/ErrorBar.cxx | 1 | ||||
-rw-r--r-- | chart2/source/tools/RegressionCurveModel.cxx | 1 | ||||
-rw-r--r-- | chart2/source/tools/RegressionEquation.cxx | 1 | ||||
-rw-r--r-- | chart2/source/tools/WrappedPropertySet.cxx | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx index 04512746c8d6..268c4988c904 100644 --- a/chart2/source/tools/ErrorBar.cxx +++ b/chart2/source/tools/ErrorBar.cxx @@ -96,7 +96,6 @@ ErrorBar::ErrorBar() : {} ErrorBar::ErrorBar( const ErrorBar & rOther ) : - MutexContainer(), impl::ErrorBar_Base(rOther), maDashName(rOther.maDashName), maLineDash(rOther.maLineDash), diff --git a/chart2/source/tools/RegressionCurveModel.cxx b/chart2/source/tools/RegressionCurveModel.cxx index 6082e4de6813..618c924dd41b 100644 --- a/chart2/source/tools/RegressionCurveModel.cxx +++ b/chart2/source/tools/RegressionCurveModel.cxx @@ -183,7 +183,6 @@ RegressionCurveModel::RegressionCurveModel( tCurveType eCurveType ) : } RegressionCurveModel::RegressionCurveModel( const RegressionCurveModel & rOther ) : - MutexContainer(), impl::RegressionCurveModel_Base(rOther), ::property::OPropertySet( rOther, m_aMutex ), m_eRegressionCurveType( rOther.m_eRegressionCurveType ), diff --git a/chart2/source/tools/RegressionEquation.cxx b/chart2/source/tools/RegressionEquation.cxx index 1051526ce384..d4140691053c 100644 --- a/chart2/source/tools/RegressionEquation.cxx +++ b/chart2/source/tools/RegressionEquation.cxx @@ -197,7 +197,6 @@ RegressionEquation::RegressionEquation() : {} RegressionEquation::RegressionEquation( const RegressionEquation & rOther ) : - MutexContainer(), impl::RegressionEquation_Base(rOther), ::property::OPropertySet( rOther, m_aMutex ), m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder()) diff --git a/chart2/source/tools/WrappedPropertySet.cxx b/chart2/source/tools/WrappedPropertySet.cxx index 2e1ba7dd7d4a..75bb8b68594f 100644 --- a/chart2/source/tools/WrappedPropertySet.cxx +++ b/chart2/source/tools/WrappedPropertySet.cxx @@ -32,7 +32,6 @@ using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::Any; WrappedPropertySet::WrappedPropertySet() - : MutexContainer() { } WrappedPropertySet::~WrappedPropertySet() |