summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-07 07:47:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-07 07:47:25 +0200
commitba650ae9bfdca346c65ce8cd9659d6ea3d47dd90 (patch)
tree88a2dc11771a810a5822963faab0d281bc47e9f2 /oox/source
parent60a67da70fd9b6f69c68046cae471bdd1d34c407 (diff)
-Werror,-Wuninitialized
Change-Id: I91333f5290c84c6317b85572824be065da9cf64b
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/helper/binarystreambase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/helper/binarystreambase.cxx b/oox/source/helper/binarystreambase.cxx
index 6b314fc5c18b..929fb6069b52 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 )
{
}