From 72877e3ade74f7517d9d85c9e7baf94d8ad49d49 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Nov 2020 15:21:06 +0100 Subject: SvStream::{Tell,TellEnd,remainingSize} all return sal_uInt64 ...so use that type where appropriate here Change-Id: I3e419457bc04b5908128bad04eb16c72052d2ebf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106267 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- include/filter/msfilter/msdffimp.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/filter') diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx index dc171b3e60da..3561d4ad9468 100644 --- a/include/filter/msfilter/msdffimp.hxx +++ b/include/filter/msfilter/msdffimp.hxx @@ -425,7 +425,7 @@ class MSFILTER_DLLPUBLIC SvxMSDffManager : public DffPropertyReader void GetFidclData(sal_uInt32 nOffsDgg); protected: - typedef std::map OffsetMap; + typedef std::map OffsetMap; OUString maBaseURL; sal_uInt32 mnIdClusters; // while only knowing the shapeid @@ -478,7 +478,7 @@ protected: sal_uInt16 nDrawingContainerId ); bool GetShapeContainerData( SvStream& rSt, sal_uInt32 nLenShapeCont, - sal_uLong nPosGroup, + sal_uInt64 nPosGroup, sal_uInt16 nDrawingContainerId ); SdrObject* ImportGraphic( SvStream&, SfxItemSet&, const DffObjData& ); @@ -754,13 +754,13 @@ public: struct SvxMSDffShapeInfo { sal_uInt32 nShapeId; ///< shape id, used in PLCF SPA and in mso_fbtSp (FSP) - sal_uLong nFilePos; ///< offset of the shape in control stream for + sal_uInt64 nFilePos; ///< offset of the shape in control stream for ///< potential later access to it sal_uInt32 nTxBxComp; bool bReplaceByFly :1; ///< shape can be replaced by a frame in Writer - explicit SvxMSDffShapeInfo(sal_uLong nFPos, sal_uInt32 nId=0, // sal_uLong nBIdx=0, + explicit SvxMSDffShapeInfo(sal_uInt64 nFPos, sal_uInt32 nId=0, // sal_uLong nBIdx=0, sal_uInt16 nSeqId=0, sal_uInt16 nBoxId=0): nShapeId( nId ), nFilePos( nFPos ), -- cgit