Kaydet (Commit) 6a87d1d7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix StgTmpStrm::GetSize

Change-Id: I49891d6c2149154c4fd524f79f3cbda17568fa7e
üst 5472c413
......@@ -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 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment