summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-27 14:38:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-10-27 14:38:03 +0100
commit6a87d1d7a9fde5bc24cb16642d235044906fe0a8 (patch)
tree2e3940a320caedfab15d0a1f087c71c0e40c258a /sot
parent5472c41350a56963b97b78d0355a74aeec6c46b5 (diff)
Fix StgTmpStrm::GetSize
Change-Id: I49891d6c2149154c4fd524f79f3cbda17568fa7e
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgstrms.cxx6
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 );
}