package/source/xstor/owriteablestream.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 443799ad8c0f5a2ae78ca03fb38618a2273682aa
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Fri May 20 12:53:07 2022 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Fri May 20 18:49:14 2022 +0200

    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 <noel.gran...@collabora.co.uk>

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<io::XSeekable*> ( this )
                     ,   static_cast<io::XTruncate*> ( this )
                     ,   static_cast<lang::XComponent*> ( this )
-                    ,   static_cast<beans::XPropertySet*> ( this ) );
+                    ,   static_cast<beans::XPropertySet*> ( this )
+                    ,   static_cast<lang::XUnoTunnel*> ( this ) );
 
     if ( aReturn.hasValue() )
         return aReturn ;

Reply via email to