diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2012-01-08 19:48:36 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2012-01-08 20:11:09 +0100 |
commit | effeb08efd1746a6a2d911452f38dc9c49685548 (patch) | |
tree | 7d5b86b7d53b4996ba8c6a38a3fb5ecf0ad4b7ff /sc | |
parent | 717e3912ed94a10c9405ac11c08eff6caba107ea (diff) |
Kill SvNullStream duplication
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xcl97/xcl97esc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/xcl97esc.cxx b/sc/source/filter/xcl97/xcl97esc.cxx index e001062b93ef..eea131ac0f15 100644 --- a/sc/source/filter/xcl97/xcl97esc.cxx +++ b/sc/source/filter/xcl97/xcl97esc.cxx @@ -98,7 +98,7 @@ SvStream* XclEscherExGlobal::ImplQueryPictureStream() // ============================================================================ XclEscherEx::XclEscherEx( const XclExpRoot& rRoot, XclExpObjectManager& rObjMgr, SvStream& rStrm, const XclEscherEx* pParent ) : - EscherEx( pParent ? pParent->mxGlobal : EscherExGlobalRef( new XclEscherExGlobal( rRoot ) ), rStrm ), + EscherEx( pParent ? pParent->mxGlobal : EscherExGlobalRef( new XclEscherExGlobal( rRoot ) ), &rStrm ), XclExpRoot( rRoot ), mrObjMgr( rObjMgr ), pCurrXclObj( NULL ), |