diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-23 09:11:23 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-23 11:34:38 +0100 |
commit | 59b091bd81aad18cf450b8a1a7a43ab48584c60a (patch) | |
tree | 6c0dd5ee9e95696a65b4aa2ebd946510d2013577 /xmlsecurity/inc | |
parent | 53bfd644d2c19fcd5ac1b387b5b69cf7f118d285 (diff) |
xmlsecurity: ImplXMLSignatureListener is only used with XMLSignatureHelper
So no need to go via Link, can call those member functions directly.
Change-Id: I36a5193965d23230ecc1ddca8675b3745933469d
Diffstat (limited to 'xmlsecurity/inc')
-rw-r--r-- | xmlsecurity/inc/xmlsignaturehelper.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/inc/xmlsignaturehelper.hxx b/xmlsecurity/inc/xmlsignaturehelper.hxx index eb44e52a2f83..38c88099fef5 100644 --- a/xmlsecurity/inc/xmlsignaturehelper.hxx +++ b/xmlsecurity/inc/xmlsignaturehelper.hxx @@ -103,16 +103,16 @@ private: Link<LinkParamNone*,bool> maStartVerifySignatureHdl; private: - DECL_LINK( SignatureCreationResultListener, XMLSignatureCreationResult&, void ); - DECL_LINK( SignatureVerifyResultListener, XMLSignatureVerifyResult&, void ); - DECL_LINK( StartVerifySignatureElement, LinkParamNone*, void ); - XMLSignatureHelper(const XMLSignatureHelper&) = delete; public: XMLSignatureHelper(const css::uno::Reference< css::uno::XComponentContext >& mrCtx ); ~XMLSignatureHelper(); + void SignatureCreationResultListener(XMLSignatureCreationResult& rResult); + void SignatureVerifyResultListener(XMLSignatureVerifyResult& rResult); + void StartVerifySignatureElement(); + // Set the storage which should be used by the default UriBinding // Must be set before StatrtMission(). //sODFVersion indicates the ODF version |