summaryrefslogtreecommitdiff
path: root/idl/source/objects/module.cxx
diff options
context:
space:
mode:
authorBayram Çiçek <mail@bayramcicek.com.tr>2021-02-14 19:11:12 +0000
committerMichael Stahl <michael.stahl@allotropia.de>2021-03-11 11:37:49 +0100
commita88effc4f53da8ae476f6a9f24b96e5948b17bee (patch)
tree1b5262a483b1c5daf09352b95563ecbf36820d9d /idl/source/objects/module.cxx
parentc792cbf4f2d0d44279f273c4c6cba650601f1468 (diff)
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: Ibb432c3db6d99343514c412c4c1b968808b733c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110886 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'idl/source/objects/module.cxx')
-rw-r--r--idl/source/objects/module.cxx2
1 files changed, 1 insertions, 1 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);