diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-27 14:38:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-27 14:38:03 +0100 |
commit | 6a87d1d7a9fde5bc24cb16642d235044906fe0a8 (patch) | |
tree | 2e3940a320caedfab15d0a1f087c71c0e40c258a /sot | |
parent | 5472c41350a56963b97b78d0355a74aeec6c46b5 (diff) |
Fix StgTmpStrm::GetSize
Change-Id: I49891d6c2149154c4fd524f79f3cbda17568fa7e
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgstrms.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sot/source/sdstor/stgstrms.cxx b/sot/source/sdstor/stgstrms.cxx index cffe6394d910..f21bc25b9ae3 100644 --- a/sot/source/sdstor/stgstrms.cxx +++ b/sot/source/sdstor/stgstrms.cxx @@ -1163,12 +1163,12 @@ StgTmpStrm::~StgTmpStrm() } } -sal_uLong StgTmpStrm::GetSize() const +sal_uInt64 StgTmpStrm::GetSize() const { - sal_uLong n; + sal_uInt64 n; if( m_pStrm ) { - sal_uLong old = m_pStrm->Tell(); + sal_uInt64 old = m_pStrm->Tell(); n = m_pStrm->Seek( STREAM_SEEK_TO_END ); m_pStrm->Seek( old ); } |