diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-30 23:10:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-31 09:04:15 +0200 |
commit | 9a4fe0bdd8a5d5d65707503137b519517d9fd6dc (patch) | |
tree | 95c80fedf31ad6acb350956bc9580e21a5e99e81 /xmlsecurity/source | |
parent | 0fc587fc1ef62b560d3e50e54fe2f1beb45a71d8 (diff) |
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I012b13ee3e73a7fa3c9fd6a4519d414315a6543d
Diffstat (limited to 'xmlsecurity/source')
-rw-r--r-- | xmlsecurity/source/framework/decryptorimpl.hxx | 12 | ||||
-rw-r--r-- | xmlsecurity/source/framework/encryptorimpl.hxx | 12 | ||||
-rw-r--r-- | xmlsecurity/source/framework/signaturecreatorimpl.hxx | 11 | ||||
-rw-r--r-- | xmlsecurity/source/framework/signatureverifierimpl.hxx | 11 |
4 files changed, 0 insertions, 46 deletions
diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx index d1763e791b5a..04c9bd030ecd 100644 --- a/xmlsecurity/source/framework/decryptorimpl.hxx +++ b/xmlsecurity/source/framework/decryptorimpl.hxx @@ -51,18 +51,6 @@ class DecryptorImpl : public cppu::ImplInheritanceHelper3 ******************************************************************************/ { private: - /* - * the Id of the encryption, which is used for the result listener to - * identify the encryption. - */ - sal_Int32 m_nEncryptionId; - - /* - * the decryption result, - * remembers whether the decryption succeeds. - */ - bool m_bDecryptionSucceed; - com::sun::star::uno::Reference< com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext; diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx index b1e1a5ece663..0aaedd48b5a2 100644 --- a/xmlsecurity/source/framework/encryptorimpl.hxx +++ b/xmlsecurity/source/framework/encryptorimpl.hxx @@ -54,22 +54,10 @@ class EncryptorImpl : public cppu::ImplInheritanceHelper4 { private: /* - * the Id of the encryption, which is used for the result listener to - * identify the encryption. - */ - sal_Int32 m_nEncryptionId; - - /* * the Id of the element to be encrypted. */ sal_Int32 m_nReferenceId; - /* - * the decryption result, - * remembers whether the encryption succeeds. - */ - bool m_bEncryptionSucceed; - com::sun::star::uno::Reference< com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment; diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx index 3620dd998ee0..76c841da5f7d 100644 --- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx +++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx @@ -54,21 +54,10 @@ class SignatureCreatorImpl : public cppu::ImplInheritanceHelper4 { private: /* - * the Id of the signature, which is used for the result listener to - * identify the signature. - */ - sal_Int32 m_nSignatureId; - - /* * the Id of template blocker. */ sal_Int32 m_nIdOfBlocker; - /* - * the signature creation result - */ - bool m_bCreationSucceed; - com::sun::star::uno::Reference< com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment; diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx index 059255d3c850..a021d61206d2 100644 --- a/xmlsecurity/source/framework/signatureverifierimpl.hxx +++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx @@ -51,17 +51,6 @@ class SignatureVerifierImpl : public cppu::ImplInheritanceHelper3 ******************************************************************************/ { private: - /* - * the Id of the signature, which is used for the result listener to - * identify the signature. - */ - sal_Int32 m_nSignatureId; - - /* - * the verify result - */ - bool m_bVerifySucceed; - com::sun::star::uno::Reference< com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext; |