diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-22 14:50:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-23 09:01:24 +0200 |
commit | 7b5fac67fd2441778cb9a6d2f529adc270998144 (patch) | |
tree | 93031caf680ccfe0b7a34d89822811ff172c55fa /comphelper | |
parent | 75ddf3a22aa83d1b067085bd7132acab5a088856 (diff) |
loplugin:unusedfields in accessibility..comphelper
Change-Id: Ifb68d65fc3e48dd80e3ff2b7a4124468fdda1695
Reviewed-on: https://gerrit.libreoffice.org/39137
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/stillreadwriteinteraction.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/comphelper/source/misc/stillreadwriteinteraction.cxx b/comphelper/source/misc/stillreadwriteinteraction.cxx index a211229baad0..bf0ecc3fa3e2 100644 --- a/comphelper/source/misc/stillreadwriteinteraction.cxx +++ b/comphelper/source/misc/stillreadwriteinteraction.cxx @@ -37,7 +37,6 @@ StillReadWriteInteraction::StillReadWriteInteraction(const css::uno::Reference< const css::uno::Reference< css::task::XInteractionHandler >& xAuxiliaryHandler) : m_bUsed (false) , m_bHandledByMySelf (false) - , m_bHandledByInternalHandler(false) , m_xAuxiliaryHandler(xAuxiliaryHandler) { std::vector< ::ucbhelper::InterceptedInteraction::InterceptedRequest > lInterceptions; @@ -76,7 +75,6 @@ void StillReadWriteInteraction::resetErrorStates() { m_bUsed = false; m_bHandledByMySelf = false; - m_bHandledByInternalHandler = false; } @@ -140,10 +138,9 @@ ucbhelper::InterceptedInteraction::EInterceptionState StillReadWriteInteraction: return ::ucbhelper::InterceptedInteraction::E_INTERCEPTED; } - // Otherwhise use internal handler. + // Otherwise use internal handler. if (m_xInterceptedHandler.is()) { - m_bHandledByInternalHandler = true; m_xInterceptedHandler->handle(xRequest); } return ::ucbhelper::InterceptedInteraction::E_INTERCEPTED; |