summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-11-19 14:56:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-11-20 13:21:53 +0100
commitb5724a53b4f3e53768429544f604cd374ed49a0c (patch)
treeb2c0928c2e43f75cfeb06f98f1cd14cce7230f49 /include
parent99f2ae505d2d2dd104842c2133488210c354f731 (diff)
Lengths passed into the SvxMSDffManager::Get*Data functions are all sal_uInt32
(i.e., rLength obtained from SvxMSDffManager::ReadCommonRecordHeader) Change-Id: I04b51cb7e6cb771d89d07a86c00ee9fdaa72aaa6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106176 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/filter/msfilter/msdffimp.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx
index 2c72722e9cf8..dc171b3e60da 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -464,20 +464,20 @@ protected:
void GetCtrlData(sal_uInt32 nOffsDgg);
void GetDrawingGroupContainerData( SvStream& rSt,
- sal_uLong nLenDgg );
+ sal_uInt32 nLenDgg );
// Add internal drawing container id as parameter to the sub methods of
// reading the control information about the drawing objects.
// The drawing container id is used to distinguish the text ids of drawing
// objects in different drawing containers.
void GetDrawingContainerData( SvStream& rSt,
- sal_uLong nLenDg,
+ sal_uInt32 nLenDg,
sal_uInt16 nDrawingContainerId );
bool GetShapeGroupContainerData( SvStream& rSt,
- sal_uLong nLenShapeGroupCont,
+ sal_uInt32 nLenShapeGroupCont,
bool bPatriarch,
sal_uInt16 nDrawingContainerId );
bool GetShapeContainerData( SvStream& rSt,
- sal_uLong nLenShapeCont,
+ sal_uInt32 nLenShapeCont,
sal_uLong nPosGroup,
sal_uInt16 nDrawingContainerId );