summaryrefslogtreecommitdiff
path: root/sd
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 /sd
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 'sd')
-rw-r--r--sd/source/core/drawdoc_animations.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/core/drawdoc_animations.cxx b/sd/source/core/drawdoc_animations.cxx
index 9fab403d50b5..b7f1bd5570f4 100644
--- a/sd/source/core/drawdoc_animations.cxx
+++ b/sd/source/core/drawdoc_animations.cxx
@@ -34,7 +34,7 @@ void SdDrawDocument::ReplacePageInCustomShows(const SdPage* pOldPage, const SdPa
{
if (mpCustomShowList)
{
- for (sal_uLong i = 0; i < mpCustomShowList->size(); i++)
+ for (size_t i = 0; i < mpCustomShowList->size(); i++)
{
SdCustomShow* pCustomShow = (*mpCustomShowList)[i].get();
pCustomShow->ReplacePage(pOldPage, pNewPage);