diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-03-29 01:19:24 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-03-29 02:03:07 +0100 |
commit | 1258b576aef2ff3cdd4f44e1c03edb8c862a79f6 (patch) | |
tree | 80bbe4b11f5f7149ee64d50ecd55eb15e79839df /include/sot | |
parent | 19bbfc0b39d79a90539fd3094d9b6d7d81619a45 (diff) |
tools: support 64-bit file positions in SvStream
Bump stream positions to 64 bits on:
SvLockBytes::SetSize()
SvStream::SeekPos()
SvStream::SetSize()
SvStream::SetStreamSize()
SvStream::Seek()
SvStream::SeekRel()
SvStream::Tell()
SvStream::remainingSize()
SvStream::nActPos
SvStream::nBufFilePos
Change-Id: I0521fd60d31d1a33e5634cbf51dd42edc46ad919
TODO: adapt callers of Seek()/SeekRel()/Tell()/remainingSize()
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/storage.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sot/storage.hxx b/include/sot/storage.hxx index 2ce9bf565bb0..b0c5b4670733 100644 --- a/include/sot/storage.hxx +++ b/include/sot/storage.hxx @@ -56,7 +56,7 @@ friend class SotStorage; protected: virtual sal_uLong GetData( void* pData, sal_uLong nSize ) SAL_OVERRIDE; virtual sal_uLong PutData( const void* pData, sal_uLong nSize ) SAL_OVERRIDE; - virtual sal_uLong SeekPos( sal_uLong nPos ) SAL_OVERRIDE; + virtual sal_uInt64 SeekPos(sal_uInt64 nPos) SAL_OVERRIDE; virtual void FlushData() SAL_OVERRIDE; ~SotStorageStream(); public: @@ -77,13 +77,13 @@ public: virtual void ResetError() SAL_OVERRIDE; - virtual void SetSize( sal_uLong nNewSize ) SAL_OVERRIDE; + virtual void SetSize( sal_uInt64 nNewSize ) SAL_OVERRIDE; sal_uInt32 GetSize() const; bool CopyTo( SotStorageStream * pDestStm ); virtual bool Commit(); virtual bool Revert(); bool SetProperty( const OUString& rName, const ::com::sun::star::uno::Any& rValue ); - virtual sal_Size remainingSize() SAL_OVERRIDE; + virtual sal_uInt64 remainingSize() SAL_OVERRIDE; }; #ifndef SOT_DECL_SOTSTORAGESTREAM_DEFINED |