From 443799ad8c0f5a2ae78ca03fb38618a2273682aa Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 20 May 2022 12:53:07 +0200 Subject: fix OWriteStream implementing XUnoTunnel doh, forgot to return it in the queryInterface in commit 62531ec1091c7b3f6a3577889a18234790ec716d add ByteWriter to reduce memory copying when writing data Change-Id: I460388b55ca38962bf60ef6be6a2b108deee6d73 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134678 Tested-by: Jenkins Reviewed-by: Noel Grandin --- package/source/xstor/owriteablestream.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'package') diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index 19707a5d4ee5..fee3ec5059b7 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -1774,7 +1774,8 @@ uno::Any SAL_CALL OWriteStream::queryInterface( const uno::Type& rType ) , static_cast ( this ) , static_cast ( this ) , static_cast ( this ) - , static_cast ( this ) ); + , static_cast ( this ) + , static_cast ( this ) ); if ( aReturn.hasValue() ) return aReturn ; -- cgit