diff options
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/objects/module.cxx | 2 | ||||
-rw-r--r-- | idl/source/objects/object.cxx | 2 | ||||
-rw-r--r-- | idl/source/objects/slot.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx index 17c483a3243e..e97dd29d651c 100644 --- a/idl/source/objects/module.cxx +++ b/idl/source/objects/module.cxx @@ -26,7 +26,7 @@ SvMetaModule::SvMetaModule() {} void SvMetaModule::WriteSfx(SvIdlDataBase& rBase, SvStream& rOutStm) { - for (sal_uLong n = 0; n < aClassList.size(); n++) + for (size_t n = 0; n < aClassList.size(); n++) { SvMetaClass* pClass = aClassList[n]; pClass->WriteSfx(rBase, rOutStm); diff --git a/idl/source/objects/object.cxx b/idl/source/objects/object.cxx index a424bb748044..1c8299b132d4 100644 --- a/idl/source/objects/object.cxx +++ b/idl/source/objects/object.cxx @@ -106,7 +106,7 @@ bool SvMetaClass::TestAttribute( SvIdlDataBase & rBase, SvTokenStream & rInStm, SAL_WARN( "idl", "new slot : " << rAttr.GetSlotId().getString() ); } - for( sal_uLong n = 0; n < aAttrList.size(); n++ ) + for( size_t n = 0; n < aAttrList.size(); n++ ) { SvMetaAttribute * pS = aAttrList[n]; if( pS->GetName() == rAttr.GetName() ) diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 30b6b1fe0eca..fcdbbb8e95d0 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -579,7 +579,7 @@ sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rO const SvRefMemberList<SvMetaAttribute *>& rList = pType->GetAttrList(); - for( sal_uLong n = 0; n < rList.size(); n++ ) + for( size_t n = 0; n < rList.size(); n++ ) { SvMetaAttribute * pPar = rList[n]; SvMetaType * pPType = pPar->GetType(); |