summaryrefslogtreecommitdiff
path: root/xmlsecurity/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-15 11:42:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-16 08:24:49 +0200
commit83f9325f0d8d643d8b3e71fa3ff76ebbd599373d (patch)
treeae330b657da35b82964cfac41f16e69acbc7c5b5 /xmlsecurity/inc
parent9e425891f79a834abb03e3d69ee0c3665944faaa (diff)
loplugin:unusedfields xmlhelp..xmlsecurity
Change-Id: I7e680e1913c787ce0adad5be1f84668d57ad00b3 Reviewed-on: https://gerrit.libreoffice.org/38821 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity/inc')
-rw-r--r--xmlsecurity/inc/xmlsignaturehelper.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/xmlsecurity/inc/xmlsignaturehelper.hxx b/xmlsecurity/inc/xmlsignaturehelper.hxx
index df77db92b7a8..3d0c91eb7ed8 100644
--- a/xmlsecurity/inc/xmlsignaturehelper.hxx
+++ b/xmlsecurity/inc/xmlsignaturehelper.hxx
@@ -51,24 +51,20 @@ namespace embed {
struct XMLSignatureCreationResult
{
- sal_Int32 nSecurityId;
css::xml::crypto::SecurityOperationStatus nSignatureCreationResult;
- XMLSignatureCreationResult( sal_Int32 nId, css::xml::crypto::SecurityOperationStatus nResult )
+ XMLSignatureCreationResult( css::xml::crypto::SecurityOperationStatus nResult )
{
- nSecurityId = nId;
nSignatureCreationResult = nResult;
}
};
struct XMLSignatureVerifyResult
{
- sal_Int32 nSecurityId;
css::xml::crypto::SecurityOperationStatus nSignatureVerifyResult;
- XMLSignatureVerifyResult( sal_Int32 nId, css::xml::crypto::SecurityOperationStatus nResult )
+ XMLSignatureVerifyResult( css::xml::crypto::SecurityOperationStatus nResult )
{
- nSecurityId = nId;
nSignatureVerifyResult = nResult;
}
};