loplugin:unusedfields in eventattacher

Change-Id: I40c69865661cdca856118cab7c43cbb0eadfdc74
This commit is contained in:
Noel Grandin 2015-12-22 15:53:31 +02:00
parent 167269f2fe
commit fb93ed9f6f

View File

@ -76,7 +76,6 @@ public:
virtual sal_Bool SAL_CALL hasProperty(const OUString& Name) throw( RuntimeException, std::exception ) override; virtual sal_Bool SAL_CALL hasProperty(const OUString& Name) throw( RuntimeException, std::exception ) override;
private: private:
Reference< XIdlReflection > m_xCoreReflection;
Reference< XAllListener > m_xAllListener; Reference< XAllListener > m_xAllListener;
Reference< XIdlClass > m_xListenerType; Reference< XIdlClass > m_xListenerType;
Any m_Helper; Any m_Helper;
@ -449,7 +448,6 @@ private:
throw (CannotConvertException, RuntimeException); throw (CannotConvertException, RuntimeException);
EventAttacherImpl * m_pEA; EventAttacherImpl * m_pEA;
Reference< XInterface > m_xEAHold;
OUString m_EventMethod; OUString m_EventMethod;
Reference< XAllListener > m_AllListener; Reference< XAllListener > m_AllListener;
}; };
@ -458,7 +456,6 @@ private:
FilterAllListenerImpl::FilterAllListenerImpl( EventAttacherImpl * pEA_, const OUString& EventMethod_, FilterAllListenerImpl::FilterAllListenerImpl( EventAttacherImpl * pEA_, const OUString& EventMethod_,
const Reference< XAllListener >& AllListener_ ) const Reference< XAllListener >& AllListener_ )
: m_pEA( pEA_ ) : m_pEA( pEA_ )
, m_xEAHold( *pEA_ )
, m_EventMethod( EventMethod_ ) , m_EventMethod( EventMethod_ )
, m_AllListener( AllListener_ ) , m_AllListener( AllListener_ )
{ {