summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/model/main/Axis.cxx2
-rw-r--r--chart2/source/model/main/BaseCoordinateSystem.cxx2
-rw-r--r--chart2/source/model/main/ChartModel.cxx2
-rw-r--r--chart2/source/model/main/DataPoint.cxx2
-rw-r--r--chart2/source/model/main/DataSeries.cxx2
-rw-r--r--chart2/source/model/main/Diagram.cxx2
-rw-r--r--chart2/source/model/main/FormattedString.cxx2
-rw-r--r--chart2/source/model/main/GridProperties.cxx2
-rw-r--r--chart2/source/model/main/Legend.cxx2
-rw-r--r--chart2/source/model/main/PageBackground.cxx2
-rw-r--r--chart2/source/model/main/StockBar.cxx2
-rw-r--r--chart2/source/model/main/Title.cxx2
-rw-r--r--chart2/source/model/main/Wall.cxx2
-rw-r--r--chart2/source/model/template/ChartType.cxx2
-rw-r--r--chart2/source/tools/ErrorBar.cxx2
-rw-r--r--chart2/source/tools/InternalDataProvider.cxx2
-rw-r--r--chart2/source/tools/NameContainer.cxx2
-rw-r--r--chart2/source/tools/RegressionCurveModel.cxx2
-rw-r--r--chart2/source/tools/RegressionEquation.cxx2
19 files changed, 19 insertions, 19 deletions
diff --git a/chart2/source/model/main/Axis.cxx b/chart2/source/model/main/Axis.cxx
index bd9081d6c83e..fe589063dd97 100644
--- a/chart2/source/model/main/Axis.cxx
+++ b/chart2/source/model/main/Axis.cxx
@@ -341,7 +341,7 @@ Axis::Axis() :
Axis::Axis( const Axis & rOther ) :
MutexContainer(),
- impl::Axis_Base(),
+ impl::Axis_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()),
m_aScaleData( rOther.m_aScaleData )
diff --git a/chart2/source/model/main/BaseCoordinateSystem.cxx b/chart2/source/model/main/BaseCoordinateSystem.cxx
index 1b9bb68cb814..34f497a149fd 100644
--- a/chart2/source/model/main/BaseCoordinateSystem.cxx
+++ b/chart2/source/model/main/BaseCoordinateSystem.cxx
@@ -152,7 +152,7 @@ BaseCoordinateSystem::BaseCoordinateSystem(
// explicit
BaseCoordinateSystem::BaseCoordinateSystem(
const BaseCoordinateSystem & rSource ) :
- impl::BaseCoordinateSystem_Base(),
+ impl::BaseCoordinateSystem_Base(rSource),
MutexContainer(),
::property::OPropertySet( rSource, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()),
diff --git a/chart2/source/model/main/ChartModel.cxx b/chart2/source/model/main/ChartModel.cxx
index 7c689e72de2a..019703701d9e 100644
--- a/chart2/source/model/main/ChartModel.cxx
+++ b/chart2/source/model/main/ChartModel.cxx
@@ -129,7 +129,7 @@ ChartModel::ChartModel(uno::Reference<uno::XComponentContext > const & xContext)
}
ChartModel::ChartModel( const ChartModel & rOther )
- : impl::ChartModel_Base()
+ : impl::ChartModel_Base(rOther)
, m_aLifeTimeManager( this, this )
, m_bReadOnly( rOther.m_bReadOnly )
, m_bModified( rOther.m_bModified )
diff --git a/chart2/source/model/main/DataPoint.cxx b/chart2/source/model/main/DataPoint.cxx
index edf9ed675b0c..bfe56b09a19a 100644
--- a/chart2/source/model/main/DataPoint.cxx
+++ b/chart2/source/model/main/DataPoint.cxx
@@ -98,7 +98,7 @@ DataPoint::DataPoint( const uno::Reference< beans::XPropertySet > & rParentPrope
DataPoint::DataPoint( const DataPoint & rOther ) :
MutexContainer(),
- impl::DataPoint_Base(),
+ impl::DataPoint_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()),
m_bNoParentPropAllowed( true )
diff --git a/chart2/source/model/main/DataSeries.cxx b/chart2/source/model/main/DataSeries.cxx
index fb6a41af87f8..9ef10eb0ae12 100644
--- a/chart2/source/model/main/DataSeries.cxx
+++ b/chart2/source/model/main/DataSeries.cxx
@@ -133,7 +133,7 @@ DataSeries::DataSeries() :
DataSeries::DataSeries( const DataSeries & rOther ) :
MutexContainer(),
- impl::DataSeries_Base(),
+ impl::DataSeries_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{
diff --git a/chart2/source/model/main/Diagram.cxx b/chart2/source/model/main/Diagram.cxx
index 5c3e083b64f9..bc680705783e 100644
--- a/chart2/source/model/main/Diagram.cxx
+++ b/chart2/source/model/main/Diagram.cxx
@@ -302,7 +302,7 @@ Diagram::Diagram( uno::Reference< uno::XComponentContext > const & xContext ) :
Diagram::Diagram( const Diagram & rOther ) :
MutexContainer(),
- impl::Diagram_Base(),
+ impl::Diagram_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xContext( rOther.m_xContext ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
diff --git a/chart2/source/model/main/FormattedString.cxx b/chart2/source/model/main/FormattedString.cxx
index 2a0608a79e08..eb9ded888cd3 100644
--- a/chart2/source/model/main/FormattedString.cxx
+++ b/chart2/source/model/main/FormattedString.cxx
@@ -105,7 +105,7 @@ FormattedString::FormattedString() :
FormattedString::FormattedString( const FormattedString & rOther ) :
MutexContainer(),
- impl::FormattedString_Base(),
+ impl::FormattedString_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_aString( rOther.m_aString ),
m_aType(rOther.m_aType),
diff --git a/chart2/source/model/main/GridProperties.cxx b/chart2/source/model/main/GridProperties.cxx
index 514e1d71e39f..3abd7313267f 100644
--- a/chart2/source/model/main/GridProperties.cxx
+++ b/chart2/source/model/main/GridProperties.cxx
@@ -133,7 +133,7 @@ GridProperties::GridProperties() :
GridProperties::GridProperties( const GridProperties & rOther ) :
MutexContainer(),
- impl::GridProperties_Base(),
+ impl::GridProperties_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{
diff --git a/chart2/source/model/main/Legend.cxx b/chart2/source/model/main/Legend.cxx
index 91dc73363e4c..aa72ddeebd7d 100644
--- a/chart2/source/model/main/Legend.cxx
+++ b/chart2/source/model/main/Legend.cxx
@@ -184,7 +184,7 @@ Legend::Legend() :
Legend::Legend( const Legend & rOther ) :
MutexContainer(),
- impl::Legend_Base(),
+ impl::Legend_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{
diff --git a/chart2/source/model/main/PageBackground.cxx b/chart2/source/model/main/PageBackground.cxx
index fab0fe647300..e7be1dfc30bf 100644
--- a/chart2/source/model/main/PageBackground.cxx
+++ b/chart2/source/model/main/PageBackground.cxx
@@ -119,7 +119,7 @@ PageBackground::PageBackground() :
PageBackground::PageBackground( const PageBackground & rOther ) :
MutexContainer(),
- impl::PageBackground_Base(),
+ impl::PageBackground_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{}
diff --git a/chart2/source/model/main/StockBar.cxx b/chart2/source/model/main/StockBar.cxx
index 2f7a534b23ce..3d3b34bce17c 100644
--- a/chart2/source/model/main/StockBar.cxx
+++ b/chart2/source/model/main/StockBar.cxx
@@ -126,7 +126,7 @@ StockBar::StockBar( bool bRisingCourse ) :
StockBar::StockBar( const StockBar & rOther ) :
MutexContainer(),
- impl::StockBar_Base(),
+ impl::StockBar_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{}
diff --git a/chart2/source/model/main/Title.cxx b/chart2/source/model/main/Title.cxx
index b334dc21f1b4..7ce84c505b50 100644
--- a/chart2/source/model/main/Title.cxx
+++ b/chart2/source/model/main/Title.cxx
@@ -237,7 +237,7 @@ Title::Title() :
Title::Title( const Title & rOther ) :
MutexContainer(),
- impl::Title_Base(),
+ impl::Title_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{
diff --git a/chart2/source/model/main/Wall.cxx b/chart2/source/model/main/Wall.cxx
index 1262e3d214a1..75b8f4bcdb9c 100644
--- a/chart2/source/model/main/Wall.cxx
+++ b/chart2/source/model/main/Wall.cxx
@@ -122,7 +122,7 @@ Wall::Wall() :
Wall::Wall( const Wall & rOther ) :
MutexContainer(),
- impl::Wall_Base(),
+ impl::Wall_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
{}
diff --git a/chart2/source/model/template/ChartType.cxx b/chart2/source/model/template/ChartType.cxx
index 7f6863ca8465..c888019e8dc1 100644
--- a/chart2/source/model/template/ChartType.cxx
+++ b/chart2/source/model/template/ChartType.cxx
@@ -48,7 +48,7 @@ ChartType::ChartType() :
ChartType::ChartType( const ChartType & rOther ) :
MutexContainer(),
- impl::ChartType_Base(),
+ impl::ChartType_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder()),
m_bNotifyChanges( true )
diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx
index e034af78c5fd..645f187cc321 100644
--- a/chart2/source/tools/ErrorBar.cxx
+++ b/chart2/source/tools/ErrorBar.cxx
@@ -101,7 +101,7 @@ ErrorBar::ErrorBar() :
ErrorBar::ErrorBar( const ErrorBar & rOther ) :
MutexContainer(),
- impl::ErrorBar_Base(),
+ impl::ErrorBar_Base(rOther),
maDashName(rOther.maDashName),
maLineDash(rOther.maLineDash),
mnLineWidth(rOther.mnLineWidth),
diff --git a/chart2/source/tools/InternalDataProvider.cxx b/chart2/source/tools/InternalDataProvider.cxx
index 5a5755c251ad..184e06687407 100644
--- a/chart2/source/tools/InternalDataProvider.cxx
+++ b/chart2/source/tools/InternalDataProvider.cxx
@@ -405,7 +405,7 @@ InternalDataProvider::InternalDataProvider(
// copy-CTOR
InternalDataProvider::InternalDataProvider( const InternalDataProvider & rOther ) :
- impl::InternalDataProvider_Base(),
+ impl::InternalDataProvider_Base(rOther),
m_aSequenceMap( rOther.m_aSequenceMap ),
m_aInternalData( rOther.m_aInternalData ),
m_bDataInColumns( rOther.m_bDataInColumns )
diff --git a/chart2/source/tools/NameContainer.cxx b/chart2/source/tools/NameContainer.cxx
index cbf128cd4f23..b5e730ba552e 100644
--- a/chart2/source/tools/NameContainer.cxx
+++ b/chart2/source/tools/NameContainer.cxx
@@ -45,7 +45,7 @@ NameContainer::NameContainer( const css::uno::Type& rType, const OUString& rServ
NameContainer::NameContainer(
const NameContainer & rOther )
- : impl::NameContainer_Base()
+ : impl::NameContainer_Base(rOther)
, m_aType( rOther.m_aType )
, m_aServicename( rOther.m_aServicename )
, m_aImplementationName( rOther.m_aImplementationName )
diff --git a/chart2/source/tools/RegressionCurveModel.cxx b/chart2/source/tools/RegressionCurveModel.cxx
index 6856b071476c..38e92be1285b 100644
--- a/chart2/source/tools/RegressionCurveModel.cxx
+++ b/chart2/source/tools/RegressionCurveModel.cxx
@@ -186,7 +186,7 @@ RegressionCurveModel::RegressionCurveModel( tCurveType eCurveType ) :
RegressionCurveModel::RegressionCurveModel( const RegressionCurveModel & rOther ) :
MutexContainer(),
- impl::RegressionCurveModel_Base(),
+ impl::RegressionCurveModel_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_eRegressionCurveType( rOther.m_eRegressionCurveType ),
m_xModifyEventForwarder( ModifyListenerHelper::createModifyEventForwarder())
diff --git a/chart2/source/tools/RegressionEquation.cxx b/chart2/source/tools/RegressionEquation.cxx
index bae6d7a4db8f..d32e0c7aa8c7 100644
--- a/chart2/source/tools/RegressionEquation.cxx
+++ b/chart2/source/tools/RegressionEquation.cxx
@@ -197,7 +197,7 @@ RegressionEquation::RegressionEquation() :
RegressionEquation::RegressionEquation( const RegressionEquation & rOther ) :
MutexContainer(),
- impl::RegressionEquation_Base(),
+ impl::RegressionEquation_Base(rOther),
::property::OPropertySet( rOther, m_aMutex ),
m_xModifyEventForwarder( new ModifyListenerHelper::ModifyEventForwarder())
{}