diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-29 08:45:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-29 16:15:04 +0200 |
commit | b25e82b903135421fbcfff646bc92e03cce366b7 (patch) | |
tree | 5bb0b53ae075bb7b17e2dd61ca3491aae7fa64f2 /svx | |
parent | 9814c1f2edf56ecc0f31001db9234ef335488879 (diff) |
loplugin:unusedmethods
Change-Id: I2be47d2faf883b519f693e2d5ad58a5ab111849f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101629
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/fmcomp/dbaexchange.cxx | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/svx/source/fmcomp/dbaexchange.cxx b/svx/source/fmcomp/dbaexchange.cxx index 784b4f259a4c..18d425cc17bc 100644 --- a/svx/source/fmcomp/dbaexchange.cxx +++ b/svx/source/fmcomp/dbaexchange.cxx @@ -339,15 +339,6 @@ namespace svx { } - ODataAccessObjectTransferable::ODataAccessObjectTransferable( - const OUString& _rDatasource - ,const sal_Int32 _nCommandType - ,const OUString& _rCommand - ) - { - construct(_rDatasource,OUString(),_nCommandType,_rCommand,nullptr,(CommandType::COMMAND == _nCommandType),_rCommand); - } - void ODataAccessObjectTransferable::Update( const OUString& _rDatasource, const sal_Int32 _nCommandType, @@ -356,16 +347,6 @@ namespace svx construct(_rDatasource,OUString(),_nCommandType,_rCommand,nullptr,(CommandType::COMMAND == _nCommandType),_rCommand); } - ODataAccessObjectTransferable::ODataAccessObjectTransferable( - const OUString& _rDatasource - ,const sal_Int32 _nCommandType - ,const OUString& _rCommand - ,const Reference< XConnection >& _rxConnection) - { - OSL_ENSURE(_rxConnection.is(),"Wrong ctor used.!"); - construct(_rDatasource,OUString(),_nCommandType,_rCommand,_rxConnection,(CommandType::COMMAND == _nCommandType),_rCommand); - } - void ODataAccessObjectTransferable::Update( const OUString& _rDatasource, const sal_Int32 _nCommandType, |