summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorArvind K <khandelwalarvind26@gmail.com>2023-03-06 11:36:15 +0530
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2023-03-23 11:53:16 +0000
commite466b4a92f5f7c49c6aff01af994d59d13633529 (patch)
tree8f1a3a3a5cf2c7f95111f5f44498207ff23ae100 /filter
parentf3ffdc1a5fe965016550f20ada405ef638bf5f75 (diff)
tdf#114441 Convert sal_uLong to better integer types
filter/ -> nFilePos in struct SvxMSDffBLIPInfo is assigned nBLIPPos which is defined as sal_uInt32. Change-Id: If2815449d12b17e8caadaff0324371c69a5a5ab6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148291 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 53818a550bec..b397630f028a 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -188,8 +188,8 @@ enum class OfficeArtBlipRecInstance : sal_uInt32
struct SvxMSDffBLIPInfo
{
- sal_uLong nFilePos; ///< offset of the BLIP in data stream
- explicit SvxMSDffBLIPInfo(sal_uLong nFPos)
+ sal_uInt32 nFilePos; ///< offset of the BLIP in data stream
+ explicit SvxMSDffBLIPInfo(sal_uInt32 nFPos)
: nFilePos(nFPos)
{
}