diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-20 12:53:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-20 18:49:14 +0200 |
commit | 443799ad8c0f5a2ae78ca03fb38618a2273682aa (patch) | |
tree | ffa20493e1ed4963e4e9f33a4d6c8ddfc87907f7 /package | |
parent | c10dc73b46f4009aaf1a048aceedc9d02a8a24a3 (diff) |
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.grandin@collabora.co.uk>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/owriteablestream.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 ; |