summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-09-13 12:40:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-09-13 13:28:16 +0200
commit747a9838ee53a4d2c005729419047b1ffde0db70 (patch)
treed32ab5e5b6a079e1bf2b1e7ccb012242f48b1316 /svtools
parent32d2e001bb056e7d98aa143b222f2721967337dc (diff)
loplugin:unusedmethods
Change-Id: I00f228451574ca9f9e352d233c7f326c88e90a95 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156892 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/valueacc.cxx7
-rw-r--r--svtools/source/control/valueimp.hxx2
2 files changed, 0 insertions, 9 deletions
diff --git a/svtools/source/control/valueacc.cxx b/svtools/source/control/valueacc.cxx
index 57c1777d4800..2497d4513b2c 100644
--- a/svtools/source/control/valueacc.cxx
+++ b/svtools/source/control/valueacc.cxx
@@ -436,13 +436,6 @@ void ValueSetAcc::FireAccessibleEvent( short nEventId, const uno::Any& rOldValue
}
}
-ValueSetAcc* ValueSetAcc::getImplementation( const uno::Reference< uno::XInterface >& rxData )
- noexcept
-{
- return dynamic_cast<ValueSetAcc*>(rxData.get());
-}
-
-
void ValueSetAcc::GetFocus()
{
mbIsFocused = true;
diff --git a/svtools/source/control/valueimp.hxx b/svtools/source/control/valueimp.hxx
index fca4e438f72f..61e849cc1acd 100644
--- a/svtools/source/control/valueimp.hxx
+++ b/svtools/source/control/valueimp.hxx
@@ -83,8 +83,6 @@ public:
void FireAccessibleEvent( short nEventId, const css::uno::Any& rOldValue, const css::uno::Any& rNewValue );
bool HasAccessibleListeners() const { return( mxEventListeners.size() > 0 ); }
- static ValueSetAcc* getImplementation( const css::uno::Reference< css::uno::XInterface >& rxData ) noexcept;
-
public:
/** Called by the corresponding ValueSet when it gets the focus.