diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-21 11:11:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-22 11:04:08 +0100 |
commit | a55d9d57e5bfe40a6d97c78b35646372f599c840 (patch) | |
tree | be2898cb64e36d554c42a67a0a6c83e816e93607 /package/source/xstor/switchpersistencestream.cxx | |
parent | abe269d3f9ca01bb1151d3ef8c20bcfa6530c65c (diff) |
loplugin:unusedfields
Change-Id: I726b8b9dee3a424f731078cd6b10027423454bee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143086
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/source/xstor/switchpersistencestream.cxx')
-rw-r--r-- | package/source/xstor/switchpersistencestream.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/source/xstor/switchpersistencestream.cxx b/package/source/xstor/switchpersistencestream.cxx index f27dce18edc5..ff6118726628 100644 --- a/package/source/xstor/switchpersistencestream.cxx +++ b/package/source/xstor/switchpersistencestream.cxx @@ -63,17 +63,13 @@ struct SPStreamData_Impl }; SwitchablePersistenceStream::SwitchablePersistenceStream( - uno::Reference< uno::XComponentContext > xContext, const uno::Reference< io::XStream >& xStream ) -: m_xContext(std::move( xContext )) { SwitchPersistenceTo( xStream ); } SwitchablePersistenceStream::SwitchablePersistenceStream( - uno::Reference< uno::XComponentContext > xContext, const uno::Reference< io::XInputStream >& xInputStream ) -: m_xContext(std::move( xContext )) { SwitchPersistenceTo( xInputStream ); } |