diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-03-31 12:17:55 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-03-31 13:25:28 +0200 |
commit | 0d06d1d16775fde3b0b34f3374907e07cbba763d (patch) | |
tree | bd74c0df75afe158c8ae9a67dd1c41d2cd2239eb /oox/source/ppt/animationspersist.cxx | |
parent | 67c04cecc86f4a2e11da3b1fd982940a526cb6cb (diff) |
Use for-range loops in oox (part2)
Change-Id: I7cbeb67a1adcdb9b0003e22b61789a882fc336c9
Reviewed-on: https://gerrit.libreoffice.org/52182
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'oox/source/ppt/animationspersist.cxx')
-rw-r--r-- | oox/source/ppt/animationspersist.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/oox/source/ppt/animationspersist.cxx b/oox/source/ppt/animationspersist.cxx index 2c1aaa2c88c7..6841c7ff2558 100644 --- a/oox/source/ppt/animationspersist.cxx +++ b/oox/source/ppt/animationspersist.cxx @@ -186,10 +186,9 @@ namespace oox { namespace ppt { Any AnimationCondition::convertList(const SlidePersistPtr & pSlide, const AnimationConditionList & l) { Any aAny; - for( AnimationConditionList::const_iterator iter = l.begin(); - iter != l.end(); ++iter) + for (auto const& elem : l) { - aAny = addToSequence( aAny, iter->convert(pSlide) ); + aAny = addToSequence( aAny, elem.convert(pSlide) ); } return aAny; } |