summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-10 13:30:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-10 19:12:25 +0100
commit2b88ea29a183aa049b2e4d10414f4d43649874a9 (patch)
tree99285ff0270f379d20474dfbde6d300a245c554a /extensions
parent3d2dbf45ebe78faab6da09ad2efe841e21a5bdd2 (diff)
No need to blacklist this loplugin:unnecessaryoverride
...a using declaration should fix it just fine Change-Id: I05cf76672bcceb7a94afa602e215a0b5a32de82b Reviewed-on: https://gerrit.libreoffice.org/44591 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/bibliography/datman.cxx6
-rw-r--r--extensions/source/bibliography/datman.hxx2
2 files changed, 1 insertions, 7 deletions
diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx
index fbff6cbe5d69..a49f854013f2 100644
--- a/extensions/source/bibliography/datman.cxx
+++ b/extensions/source/bibliography/datman.cxx
@@ -1394,12 +1394,6 @@ Reference< awt::XControlModel > BibDataManager::loadControlModel(
return xModel;
}
-void SAL_CALL BibDataManager::disposing()
-{
- BibDataManager_Base::WeakComponentImplHelperBase::disposing();
-}
-
-
void BibDataManager::disposing( const EventObject& /*Source*/ )
{
// not interested in
diff --git a/extensions/source/bibliography/datman.hxx b/extensions/source/bibliography/datman.hxx
index 3fd40140397f..e405fd355842 100644
--- a/extensions/source/bibliography/datman.hxx
+++ b/extensions/source/bibliography/datman.hxx
@@ -117,7 +117,7 @@ private:
virtual void SAL_CALL addLoadListener( const css::uno::Reference< css::form::XLoadListener >& aListener ) override;
virtual void SAL_CALL removeLoadListener( const css::uno::Reference< css::form::XLoadListener >& aListener ) override;
- virtual void SAL_CALL disposing() override;
+ using WeakComponentImplHelperBase::disposing;
public: