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

Stephan Bergmann sbergman at redhat.com
Mon Oct 6 22:47:51 PDT 2014


 oox/source/helper/binarystreambase.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ba650ae9bfdca346c65ce8cd9659d6ea3d47dd90
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Oct 7 07:47:25 2014 +0200

    -Werror,-Wuninitialized
    
    Change-Id: I91333f5290c84c6317b85572824be065da9cf64b

diff --git a/oox/source/helper/binarystreambase.cxx b/oox/source/helper/binarystreambase.cxx
index 6b314fc..929fb60 100644
--- a/oox/source/helper/binarystreambase.cxx
+++ b/oox/source/helper/binarystreambase.cxx
@@ -54,7 +54,7 @@ void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos
 }
 
 BinaryXSeekableStream::BinaryXSeekableStream( const Reference< XSeekable >& rxSeekable ) :
-    BinaryStreamBase( mxSeekable.is() ),
+    BinaryStreamBase( rxSeekable.is() ),
     mxSeekable( rxSeekable )
 {
 }


More information about the Libreoffice-commits mailing list