From b0229855057ed4d73e73ecd8c501a4564f2237ce Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 9 Jan 2017 09:22:34 +0200 Subject: loplugin:unusedfields Change-Id: I9611511cb3480734dea3c3cbaf0d659071366ad1 Reviewed-on: https://gerrit.libreoffice.org/32873 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- xmlsecurity/inc/framework/signaturecreatorimpl.hxx | 2 +- xmlsecurity/inc/framework/signatureengine.hxx | 5 +---- xmlsecurity/inc/framework/signatureverifierimpl.hxx | 3 +-- 3 files changed, 3 insertions(+), 7 deletions(-) (limited to 'xmlsecurity/inc/framework') diff --git a/xmlsecurity/inc/framework/signaturecreatorimpl.hxx b/xmlsecurity/inc/framework/signaturecreatorimpl.hxx index ce5e01f08eb7..cdf0da4e1067 100644 --- a/xmlsecurity/inc/framework/signaturecreatorimpl.hxx +++ b/xmlsecurity/inc/framework/signaturecreatorimpl.hxx @@ -67,7 +67,7 @@ private: throw (css::uno::Exception, css::uno::RuntimeException) override; public: - explicit SignatureCreatorImpl( const css::uno::Reference< css::uno::XComponentContext > & xContext ); + explicit SignatureCreatorImpl(); virtual ~SignatureCreatorImpl() override; /* XBlockerMonitor */ diff --git a/xmlsecurity/inc/framework/signatureengine.hxx b/xmlsecurity/inc/framework/signatureengine.hxx index ee6c79abea98..3793016cec61 100644 --- a/xmlsecurity/inc/framework/signatureengine.hxx +++ b/xmlsecurity/inc/framework/signatureengine.hxx @@ -54,9 +54,6 @@ class XSECFW_DLLPUBLIC SignatureEngine : public cppu::ImplInheritanceHelper * Maintains common members and methods related with signature operation. ******************************************************************************/ { -private: - css::uno::Reference< css::uno::XComponentContext > m_xContext; - protected: /* @@ -86,7 +83,7 @@ protected: std::vector< css::uno::Reference< css::io::XInputStream > > m_vXInputStreams; protected: - explicit SignatureEngine( const css::uno::Reference< css::uno::XComponentContext > & xContext); + explicit SignatureEngine(); virtual ~SignatureEngine() override {}; virtual void tryToPerform( ) diff --git a/xmlsecurity/inc/framework/signatureverifierimpl.hxx b/xmlsecurity/inc/framework/signatureverifierimpl.hxx index f31f7acda35e..70bbb419de07 100644 --- a/xmlsecurity/inc/framework/signatureverifierimpl.hxx +++ b/xmlsecurity/inc/framework/signatureverifierimpl.hxx @@ -61,8 +61,7 @@ private: throw (css::uno::Exception, css::uno::RuntimeException) override; public: - explicit SignatureVerifierImpl( const css::uno::Reference< - css::uno::XComponentContext >& rxContext); + explicit SignatureVerifierImpl(); virtual ~SignatureVerifierImpl() override; /* XSignatureVerifyResultBroadcaster */ -- cgit