diff options
Diffstat (limited to 'svl/source/fsstor/oinputstreamcontainer.cxx')
-rw-r--r-- | svl/source/fsstor/oinputstreamcontainer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/fsstor/oinputstreamcontainer.cxx b/svl/source/fsstor/oinputstreamcontainer.cxx index a68e449c7f47..d64c52de01ea 100644 --- a/svl/source/fsstor/oinputstreamcontainer.cxx +++ b/svl/source/fsstor/oinputstreamcontainer.cxx @@ -84,14 +84,14 @@ uno::Any SAL_CALL OFSInputStreamContainer::queryInterface( const uno::Type& rTyp uno::Any aReturn; if ( m_bSeekable ) - aReturn = uno::Any( ::cppu::queryInterface( rType, + aReturn = ::cppu::queryInterface( rType, static_cast< io::XStream* >( this ), static_cast< io::XInputStream* >( this ), - static_cast< io::XSeekable* >( this ) ) ); + static_cast< io::XSeekable* >( this ) ); else - aReturn = uno::Any( ::cppu::queryInterface( rType, + aReturn = ::cppu::queryInterface( rType, static_cast< io::XStream* >( this ), - static_cast< io::XInputStream* >( this ) ) ); + static_cast< io::XInputStream* >( this ) ); if ( aReturn.hasValue() ) return aReturn ; |