diff options
author | Björn Milcke <bm@openoffice.org> | 2003-12-17 15:43:22 +0000 |
---|---|---|
committer | Björn Milcke <bm@openoffice.org> | 2003-12-17 15:43:22 +0000 |
commit | 7eafbb8ad2e1e0f0b967fd912def118c5d660776 (patch) | |
tree | 1696b061fffc5965dbe59cd0ffe4b547d65bcae6 /chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx | |
parent | 10d693aaef09346d3bdec9158ff477706ac524e3 (diff) |
regression curves reimplemented
Diffstat (limited to 'chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx')
-rw-r--r-- | chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx b/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx index 1198657314da..3d794f7c1389 100644 --- a/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx +++ b/chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx @@ -2,9 +2,9 @@ * * $RCSfile: MultipleChartConverters.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: bm $ $Date: 2003-12-10 16:51:51 $ + * last change: $Author: bm $ $Date: 2003-12-17 16:43:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -179,12 +179,13 @@ AllDataLabelItemConverter::AllDataLabelItemConverter( uno::Reference< beans::XPropertySet > xObjectProperties( *aIt, uno::UNO_QUERY); if( pRefSize.get()) m_aConverters.push_back( new ::chart::wrapper::DataPointItemConverter( + xChartModel, xObjectProperties, rItemPool, rDrawModel, NULL, GraphicPropertyItemConverter::FILLED_DATA_POINT, ::std::auto_ptr< awt::Size >( new awt::Size( *pRefSize )) )); else m_aConverters.push_back( new ::chart::wrapper::DataPointItemConverter( - xObjectProperties, rItemPool, rDrawModel, NULL )); + xChartModel, xObjectProperties, rItemPool, rDrawModel, NULL )); } } @@ -213,7 +214,7 @@ AllSeriesStatisticsConverter::AllSeriesStatisticsConverter( { uno::Reference< beans::XPropertySet > xObjectProperties( *aIt, uno::UNO_QUERY); m_aConverters.push_back( new ::chart::wrapper::StatisticsItemConverter( - xObjectProperties, rItemPool )); + xChartModel, xObjectProperties, rItemPool )); } } |