summaryrefslogtreecommitdiff
path: root/package/source/xstor/ocompinstream.cxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-16 07:52:45 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-19 05:28:29 +0000
commit930f0242a11538ddda0e80712be98ff6b9431fd2 (patch)
tree77e6490ba9e211d3a8f08b214bec9ba41a77c681 /package/source/xstor/ocompinstream.cxx
parent42062d99f171196778685e655e4edafd33ac159f (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 'package/source/xstor/ocompinstream.cxx')
-rw-r--r--package/source/xstor/ocompinstream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/source/xstor/ocompinstream.cxx b/package/source/xstor/ocompinstream.cxx
index 24318b1b0c3e..c94d16c277b9 100644
--- a/package/source/xstor/ocompinstream.cxx
+++ b/package/source/xstor/ocompinstream.cxx
@@ -80,7 +80,7 @@ uno::Any SAL_CALL OInputCompStream::queryInterface( const uno::Type& rType )
uno::Any aReturn;
// common interfaces
- aReturn <<= ::cppu::queryInterface
+ aReturn = ::cppu::queryInterface
( rType
, static_cast<io::XInputStream*> ( this )
, static_cast<io::XStream*> ( this )
@@ -93,7 +93,7 @@ uno::Any SAL_CALL OInputCompStream::queryInterface( const uno::Type& rType )
if ( m_nStorageType == embed::StorageFormats::OFOPXML )
{
- aReturn <<= ::cppu::queryInterface
+ aReturn = ::cppu::queryInterface
( rType
, static_cast<embed::XRelationshipAccess*> ( this ) );