From 930f0242a11538ddda0e80712be98ff6b9431fd2 Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Sun, 16 Oct 2016 07:52:45 +0200 Subject: 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 Reviewed-by: Jochen Nitschke --- svl/source/fsstor/fsstorage.cxx | 2 +- svl/source/fsstor/ostreamcontainer.cxx | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'svl/source') diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx index cbcc682599fc..7aa50cd5ba9c 100644 --- a/svl/source/fsstor/fsstorage.cxx +++ b/svl/source/fsstor/fsstorage.cxx @@ -255,7 +255,7 @@ uno::Any SAL_CALL FSStorage::queryInterface( const uno::Type& rType ) throw( uno::RuntimeException, std::exception ) { uno::Any aReturn; - aReturn <<= ::cppu::queryInterface + aReturn = ::cppu::queryInterface ( rType , static_cast ( this ) , static_cast ( this ) 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 ( this ) , static_cast ( 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 ( 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 ( 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 ( 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 ( 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 ( this ) ); -- cgit