diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-05 13:27:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-06 08:35:23 +0200 |
commit | ab9b38a4064141705aa3a3de9a5d73b465ad3af3 (patch) | |
tree | 888fcc6b517c44d77e2d297c13ee84fb487dd7a7 /configmgr/source/update.cxx | |
parent | 13341ffa49d58f313a05edae4f4f04c215658e9f (diff) |
use more begin()/end() for Sequence
Change-Id: I399be6b6ef7a6ce01e883569a177c0969bc29c69
Diffstat (limited to 'configmgr/source/update.cxx')
-rw-r--r-- | configmgr/source/update.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configmgr/source/update.cxx b/configmgr/source/update.cxx index a830dd616f73..e084a920e614 100644 --- a/configmgr/source/update.cxx +++ b/configmgr/source/update.cxx @@ -51,9 +51,7 @@ namespace { std::set< OUString > seqToSet( css::uno::Sequence< OUString > const & sequence) { - return std::set< OUString >( - sequence.getConstArray(), - sequence.getConstArray() + sequence.getLength()); + return std::set< OUString >( sequence.begin(), sequence.end() ); } class Service: |