diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-10 16:12:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-11 12:50:55 +0200 |
commit | 20571c472528c4f98fe3f55700d134915d32a49a (patch) | |
tree | 9b350824d845b8aaeb13d087ef74febb454b821b /sdext | |
parent | b401896a56149aa2871b65a330a6f601a9830ccd (diff) |
use more range-for on uno::Sequence
Change-Id: Ifad32425d79be5a22d33d721bdc5fb993f699759
Reviewed-on: https://gerrit.libreoffice.org/39763
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/minimizer/pagecollector.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sdext/source/minimizer/pagecollector.cxx b/sdext/source/minimizer/pagecollector.cxx index 3c59b12d04d7..874bbf0a9150 100644 --- a/sdext/source/minimizer/pagecollector.cxx +++ b/sdext/source/minimizer/pagecollector.cxx @@ -45,13 +45,11 @@ void PageCollector::CollectCustomShowPages( const css::uno::Reference< css::fram { // creating a list of every page that is used within our customshow Sequence< OUString> aNameSeq( aXCont->getElementNames() ); - const OUString* pUString = aNameSeq.getArray(); - sal_Int32 i, nCount = aNameSeq.getLength(); - for ( i = 0; i < nCount; i++ ) + for ( OUString const & i :aNameSeq ) { - if ( pUString[ i ] == rCustomShowName ) + if ( i == rCustomShowName ) { - Reference< container::XIndexContainer > aXIC( aXCont->getByName( pUString[ i ] ), UNO_QUERY_THROW ); + Reference< container::XIndexContainer > aXIC( aXCont->getByName( i ), UNO_QUERY_THROW ); sal_Int32 j, nSlideCount = aXIC->getCount(); for ( j = 0; j < nSlideCount; j++ ) { |