summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-05 13:27:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-06 08:35:23 +0200
commitab9b38a4064141705aa3a3de9a5d73b465ad3af3 (patch)
tree888fcc6b517c44d77e2d297c13ee84fb487dd7a7 /sc
parent13341ffa49d58f313a05edae4f4f04c215658e9f (diff)
use more begin()/end() for Sequence
Change-Id: I399be6b6ef7a6ce01e883569a177c0969bc29c69
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/unoobj/cellvaluebinding.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/ui/unoobj/cellvaluebinding.cxx b/sc/source/ui/unoobj/cellvaluebinding.cxx
index dc010291fa64..19a6b01961bc 100644
--- a/sc/source/ui/unoobj/cellvaluebinding.cxx
+++ b/sc/source/ui/unoobj/cellvaluebinding.cxx
@@ -161,10 +161,8 @@ namespace calc
// look up in our sequence
Sequence< Type > aSupportedTypes( getSupportedValueTypes() );
- const Type* pTypes = aSupportedTypes.getConstArray();
- const Type* pTypesEnd = aSupportedTypes.getConstArray() + aSupportedTypes.getLength();
- while ( pTypes != pTypesEnd )
- if ( aType.equals( *pTypes++ ) )
+ for ( auto const & i : aSupportedTypes )
+ if ( aType == i )
return true;
return false;