diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-10 16:00:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-11 09:39:44 +0200 |
commit | 0e8e5c196bd8eeda37da0db17bb617f5e97f4ddb (patch) | |
tree | aef510edd37cbd64df7d90644e92ebd5fc2466c2 /dbaccess | |
parent | 2da435922f9c1fcf52eb0c1eb3d6f73581e9f793 (diff) |
loplugin:unusedfields
Change-Id: I876183559a7d9f1e6d914fbf37d7ffe91459144e
Reviewed-on: https://gerrit.libreoffice.org/60278
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/dataaccess/intercept.cxx | 3 | ||||
-rw-r--r-- | dbaccess/source/core/dataaccess/intercept.hxx | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/dbaccess/source/core/dataaccess/intercept.cxx b/dbaccess/source/core/dataaccess/intercept.cxx index 7cec465d5de2..9668c273d0ec 100644 --- a/dbaccess/source/core/dataaccess/intercept.cxx +++ b/dbaccess/source/core/dataaccess/intercept.cxx @@ -59,9 +59,6 @@ void OInterceptor::dispose() osl::MutexGuard aGuard(m_aMutex); - if ( m_pDisposeEventListeners && m_pDisposeEventListeners->getLength() ) - m_pDisposeEventListeners->disposeAndClear( aEvt ); - if ( m_pStatCL ) m_pStatCL->disposeAndClear( aEvt ); diff --git a/dbaccess/source/core/dataaccess/intercept.hxx b/dbaccess/source/core/dataaccess/intercept.hxx index bcce278492bb..c7ddd3d217ab 100644 --- a/dbaccess/source/core/dataaccess/intercept.hxx +++ b/dbaccess/source/core/dataaccess/intercept.hxx @@ -104,7 +104,6 @@ private: css::uno::Sequence< OUString > m_aInterceptedURL; - std::unique_ptr<comphelper::OInterfaceContainerHelper2> m_pDisposeEventListeners; std::unique_ptr<PropertyChangeListenerContainer> m_pStatCL; }; |