diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-12 08:59:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-12 08:59:48 +0200 |
commit | c93486bbb85ae19b6d15395afbd7aec3c5db7e89 (patch) | |
tree | 425f0b5f6890e110d6fe74b231da359f7362fdfb /basic | |
parent | bbfeab3b13b48c99cfa2f94c8c34bc3efef7faa9 (diff) |
loplugin:loopvartoosmall
Change-Id: Ifa813b91b153004aa0fba42cdc209f4c4fd9578f
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxarray.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx index c397506857f3..654004a8646b 100644 --- a/basic/source/sbx/sbxarray.cxx +++ b/basic/source/sbx/sbxarray.cxx @@ -507,7 +507,7 @@ bool SbxArray::StoreData( SvStream& rStrm ) const nElem++; } rStrm.WriteUInt16( nElem ); - for( sal_uInt32 n = 0; n < mpVarEntries->size(); n++ ) + for( size_t n = 0; n < mpVarEntries->size(); n++ ) { SbxVarEntry& rEntry = (*mpVarEntries)[n]; if (rEntry.mpVar && !(rEntry.mpVar->GetFlags() & SbxFlagBits::DontStore)) |