summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rsc/rsc.cxx4
1 files changed, 2 insertions, 2 deletions
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(' ');