From afcf1ecee1af1312551583b9fc860c1881ba2134 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 28 May 2015 14:29:05 +0200 Subject: loplugin:loopvartoosmall Change-Id: I1e9768c08af0bc7caac6a39c13842ee9d8ad962c --- rsc/source/rsc/rsc.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rsc') diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index 7ee853254c77..e9d25ab3d08a 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -930,7 +930,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile, aOStm.WriteLine(OString("FileList = {")); - for( sal_uInt32 i = 0; i < aEntryVector.size(); ++i ) + for( size_t i = 0; i < aEntryVector.size(); ++i ) { OStringBuffer aEntryString("< \""); @@ -956,7 +956,7 @@ void RscCompiler::PreprocessSrsFile( const RscCmdLine::OutputFile& rOutputFile, { OStringBuffer aImagesStr; - for( sal_uInt32 i = 0; i < aMissingImages.size(); ++i ) + for( size_t i = 0; i < aMissingImages.size(); ++i ) { if( i ) aImagesStr.append(' '); -- cgit