diff options
Diffstat (limited to 'chart2/source/tools/DataSeriesHelper.cxx')
-rw-r--r-- | chart2/source/tools/DataSeriesHelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/tools/DataSeriesHelper.cxx b/chart2/source/tools/DataSeriesHelper.cxx index eea642e0ace9..e668ccbf4565 100644 --- a/chart2/source/tools/DataSeriesHelper.cxx +++ b/chart2/source/tools/DataSeriesHelper.cxx @@ -260,7 +260,7 @@ Reference< chart2::data::XDataSource > getDataSource( const Sequence< Reference< chart2::XDataSeries > > & aSeries ) { return Reference< chart2::data::XDataSource >( - new DataSource(ContainerHelper::ContainerToSequence(getAllDataSequences(aSeries)))); + new DataSource(comphelper::containerToSequence(getAllDataSequences(aSeries)))); } namespace @@ -529,7 +529,7 @@ void deleteSeries( if( aIt != aSeries.end()) { aSeries.erase( aIt ); - xSeriesCnt->setDataSeries( ContainerHelper::ContainerToSequence( aSeries )); + xSeriesCnt->setDataSeries( comphelper::containerToSequence( aSeries )); } } catch( const uno::Exception & ex ) |