summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2019-05-05 19:14:24 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-05-05 19:24:18 +0200
commitddd5587d48eb685cbfc1106f694fb6b582fac6b8 (patch)
tree075598836566f6e15d4302307f9748a8c0ca4ce9 /xmloff
parentacd8ee107f336d629782956350ed3981ca302024 (diff)
Drop lcl_SequenceToVector in favor of comphelper::sequenceToContainer
Change-Id: I86284553e1b0229d0b576ef1d92efd040b524a1b Reviewed-on: https://gerrit.libreoffice.org/71825 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLTableContext.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx
index cb0423c92976..996f2b82c287 100644
--- a/xmloff/source/chart/SchXMLTableContext.cxx
+++ b/xmloff/source/chart/SchXMLTableContext.cxx
@@ -196,14 +196,6 @@ bool lcl_tableOfRangeMatches(
(rRange.indexOf( rTableName ) != -1 ));
}
-template< typename T >
-::std::vector< T > lcl_SequenceToVector( const uno::Sequence< T > & rSequence )
-{
- ::std::vector< T > aResult( rSequence.getLength());
- ::std::copy( rSequence.begin(), rSequence.end(), aResult.begin());
- return aResult;
-}
-
} // anonymous namespace
// class SchXMLTableContext
@@ -298,7 +290,7 @@ void SchXMLTableContext::EndElement()
if( mbHasColumnPermutation )
{
SAL_WARN_IF( mbHasRowPermutation, "xmloff.chart", "mbHasColumnPermutation is true" );
- ::std::vector< sal_Int32 > aPermutation( lcl_SequenceToVector( maColumnPermutation ));
+ auto aPermutation( comphelper::sequenceToContainer<std::vector< sal_Int32 >>( maColumnPermutation ));
SAL_WARN_IF( aPermutation.empty(), "xmloff.chart", "aPermutation is NULL");
if( aPermutation.empty())
return;
@@ -338,7 +330,7 @@ void SchXMLTableContext::EndElement()
}
else if( mbHasRowPermutation )
{
- ::std::vector< sal_Int32 > aPermutation( lcl_SequenceToVector( maRowPermutation ));
+ auto aPermutation( comphelper::sequenceToContainer<std::vector< sal_Int32 >>( maRowPermutation ));
SAL_WARN_IF( aPermutation.empty(), "xmloff.chart", "aPermutation is NULL");
if( aPermutation.empty())
return;