diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-16 07:52:45 +0200 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-19 05:28:29 +0000 |
commit | 930f0242a11538ddda0e80712be98ff6b9431fd2 (patch) | |
tree | 77e6490ba9e211d3a8f08b214bec9ba41a77c681 /svl/source/fsstor/ostreamcontainer.cxx | |
parent | 42062d99f171196778685e655e4edafd33ac159f (diff) |
replace <<= with assign for <<= with rhs Any
queryAggregation and queryInterface return Any
Change-Id: Ib8e3e742bd66f7419cad583988b247bb628f7b4a
Reviewed-on: https://gerrit.libreoffice.org/29912
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'svl/source/fsstor/ostreamcontainer.cxx')
-rw-r--r-- | svl/source/fsstor/ostreamcontainer.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/fsstor/ostreamcontainer.cxx b/svl/source/fsstor/ostreamcontainer.cxx index 997dd2c33420..9e5d0c501c1d 100644 --- a/svl/source/fsstor/ostreamcontainer.cxx +++ b/svl/source/fsstor/ostreamcontainer.cxx @@ -69,7 +69,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) { uno::Any aReturn; - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<lang::XTypeProvider*> ( this ) , static_cast<io::XStream*> ( this ) @@ -81,7 +81,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) if ( m_xSeekable.is() ) { - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<io::XSeekable*> ( this ) ); @@ -91,7 +91,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) if ( m_xInputStream.is() ) { - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<io::XInputStream*> ( this ) ); @@ -100,7 +100,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) } if ( m_xOutputStream.is() ) { - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<io::XOutputStream*> ( this ) ); @@ -109,7 +109,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) } if ( m_xTruncate.is() ) { - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<io::XTruncate*> ( this ) ); @@ -118,7 +118,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType ) } if ( m_xAsyncOutputMonitor.is() ) { - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast<io::XAsyncOutputMonitor*> ( this ) ); |