summaryrefslogtreecommitdiff
path: root/chart2/source/view
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2019-05-12 12:13:42 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-05-13 10:02:02 +0200
commit1bf1c56ce05a08e09c3f7def4962ef7f7ae885d9 (patch)
tree7d6548ff3ab14564b8dcca89d170cb1e81391da2 /chart2/source/view
parentca7f34acabfbb92e76aa367458056a75bd99991b (diff)
Remove ContainerHelper.hxx
Use comphelper::sequenceToContainer instead of ContainerHelper::SequenceToVector Change-Id: I4834255a1349ac7a29127a84a54fcfa98d678d00 Reviewed-on: https://gerrit.libreoffice.org/72186 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/view')
-rw-r--r--chart2/source/view/axes/VCoordinateSystem.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/chart2/source/view/axes/VCoordinateSystem.cxx b/chart2/source/view/axes/VCoordinateSystem.cxx
index 9caaff5de1da..8ab7e19e6013 100644
--- a/chart2/source/view/axes/VCoordinateSystem.cxx
+++ b/chart2/source/view/axes/VCoordinateSystem.cxx
@@ -26,7 +26,6 @@
#include <servicenames_coosystems.hxx>
#include <ObjectIdentifier.hxx>
#include <ExplicitCategoriesProvider.hxx>
-#include <ContainerHelper.hxx>
#include "VAxisBase.hxx"
#include <defines.hxx>
#include <chartview/ExplicitValueProvider.hxx>
@@ -202,7 +201,7 @@ Sequence< Reference< beans::XPropertySet > > VCoordinateSystem::getGridListFromA
if( xAxis.is() )
{
aRet.push_back( xAxis->getGridProperties() );
- std::vector< Reference< beans::XPropertySet > > aSubGrids( ContainerHelper::SequenceToVector( xAxis->getSubGridProperties() ) );
+ auto aSubGrids( comphelper::sequenceToContainer<std::vector< Reference< beans::XPropertySet > > >( xAxis->getSubGridProperties() ) );
aRet.insert( aRet.end(), aSubGrids.begin(), aSubGrids.end() );
}