diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-10 12:11:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-14 19:19:00 +0100 |
commit | 38c008de39ef004a7f9089baba96bc408de67bae (patch) | |
tree | 43f37c4c36d8b1bf6786827ce112816f91bdf6fd /include | |
parent | c2f67e6ed60554de8b02b499fb93a60e703d533a (diff) |
Stream::Tell returns sal_uInt64
Change-Id: I02e49d4f59c17a9868c4111ac91b5dd2715e689c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126630
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/escherex.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx index 0246ce12e713..da62cb52f957 100644 --- a/include/filter/msfilter/escherex.hxx +++ b/include/filter/msfilter/escherex.hxx @@ -1123,7 +1123,7 @@ public: void SetEditAs( const OUString& rEditAs ); const OUString& GetEditAs() const { return mEditAs; } SvStream& GetStream() const { return *mpOutStrm; } - sal_uLong GetStreamPos() const { return mpOutStrm->Tell(); } + sal_uInt64 GetStreamPos() const { return mpOutStrm->Tell(); } // features during the creation of the following Containers: |