diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-20 13:41:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-20 16:05:40 +0200 |
commit | 901add54cd5191b5a41ec11baddd669954c34025 (patch) | |
tree | 200b057dba6140ce5b40bc1e7d643f6214daca18 /include | |
parent | 1e701a9d1cf67532026014d627ab96d28e8b8476 (diff) |
loplugin:unusedmethods
Change-Id: Ic3690d7f2a075d47ffed3db03ee6895ebdab441e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101070
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/dbaobjectex.hxx | 7 | ||||
-rw-r--r-- | include/vcl/edit.hxx | 1 | ||||
-rw-r--r-- | include/vcl/toolkit/vclmedit.hxx | 1 |
3 files changed, 0 insertions, 9 deletions
diff --git a/include/svx/dbaobjectex.hxx b/include/svx/dbaobjectex.hxx index d570fac7f5b3..2a0d243cce0a 100644 --- a/include/svx/dbaobjectex.hxx +++ b/include/svx/dbaobjectex.hxx @@ -32,13 +32,6 @@ namespace svx class SAL_WARN_UNUSED SVX_DLLPUBLIC OComponentTransferable final : public TransferDataContainer { public: - /** construct the transferable - */ - OComponentTransferable( - const OUString& rDatasourceOrLocation, - const css::uno::Reference< css::ucb::XContent>& xContent - ); - OComponentTransferable(); void Update( diff --git a/include/vcl/edit.hxx b/include/vcl/edit.hxx index 0ad6203a10e9..eea49d559338 100644 --- a/include/vcl/edit.hxx +++ b/include/vcl/edit.hxx @@ -164,7 +164,6 @@ public: static bool IsCharInput( const KeyEvent& rKEvt ); virtual void SetModifyFlag(); - virtual void ClearModifyFlag(); void SetEchoChar( sal_Unicode c ); sal_Unicode GetEchoChar() const { return mcEchoChar; } diff --git a/include/vcl/toolkit/vclmedit.hxx b/include/vcl/toolkit/vclmedit.hxx index da38a5bbcb57..c7e0a991191f 100644 --- a/include/vcl/toolkit/vclmedit.hxx +++ b/include/vcl/toolkit/vclmedit.hxx @@ -110,7 +110,6 @@ public: virtual void Modify() override; virtual void SetModifyFlag() override; - virtual void ClearModifyFlag() override; virtual void SetReadOnly( bool bReadOnly = true ) override; virtual bool IsReadOnly() const override; |