[Libreoffice-commits] core.git: sot/source

Stephan Bergmann sbergman at redhat.com
Tue Oct 27 06:38:27 PDT 2015


 sot/source/sdstor/stgstrms.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 6a87d1d7a9fde5bc24cb16642d235044906fe0a8
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Oct 27 14:38:03 2015 +0100

    Fix StgTmpStrm::GetSize
    
    Change-Id: I49891d6c2149154c4fd524f79f3cbda17568fa7e

diff --git a/sot/source/sdstor/stgstrms.cxx b/sot/source/sdstor/stgstrms.cxx
index cffe639..f21bc25 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 );
     }


More information about the Libreoffice-commits mailing list