Kaydet (Commit) 9a4fe0bd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-private-field (Clang towards 3.2)

Change-Id: I012b13ee3e73a7fa3c9fd6a4519d414315a6543d
üst 0fc587fc
...@@ -51,18 +51,6 @@ class DecryptorImpl : public cppu::ImplInheritanceHelper3 ...@@ -51,18 +51,6 @@ class DecryptorImpl : public cppu::ImplInheritanceHelper3
******************************************************************************/ ******************************************************************************/
{ {
private: 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::uno::Reference<
com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext; com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext;
......
...@@ -53,23 +53,11 @@ class EncryptorImpl : public cppu::ImplInheritanceHelper4 ...@@ -53,23 +53,11 @@ class EncryptorImpl : public cppu::ImplInheritanceHelper4
******************************************************************************/ ******************************************************************************/
{ {
private: 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. * the Id of the element to be encrypted.
*/ */
sal_Int32 m_nReferenceId; sal_Int32 m_nReferenceId;
/*
* the decryption result,
* remembers whether the encryption succeeds.
*/
bool m_bEncryptionSucceed;
com::sun::star::uno::Reference< com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment; com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment;
......
...@@ -53,22 +53,11 @@ class SignatureCreatorImpl : public cppu::ImplInheritanceHelper4 ...@@ -53,22 +53,11 @@ class SignatureCreatorImpl : public cppu::ImplInheritanceHelper4
******************************************************************************/ ******************************************************************************/
{ {
private: 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. * the Id of template blocker.
*/ */
sal_Int32 m_nIdOfBlocker; sal_Int32 m_nIdOfBlocker;
/*
* the signature creation result
*/
bool m_bCreationSucceed;
com::sun::star::uno::Reference< com::sun::star::uno::Reference<
com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment; com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment;
......
...@@ -51,17 +51,6 @@ class SignatureVerifierImpl : public cppu::ImplInheritanceHelper3 ...@@ -51,17 +51,6 @@ class SignatureVerifierImpl : public cppu::ImplInheritanceHelper3
******************************************************************************/ ******************************************************************************/
{ {
private: 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::uno::Reference<
com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext; com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment