summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-28 10:00:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-28 13:01:25 +0200
commit867a22fd199e732803c9050fe9f84ad630ec27fb (patch)
tree4a33f2084c10a5d96def0039c9374073106bbe5b /xmlsecurity
parent149a4d756699f4275f9f84807e72526e73aed1b2 (diff)
loplugin:virtualdown in xmloff/xmlsecurity
Change-Id: I884fe180be98fe29ddb7d2daf4c61f733236e8bd Reviewed-on: https://gerrit.libreoffice.org/51987 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/inc/framework/securityengine.hxx6
-rw-r--r--xmlsecurity/inc/framework/signaturecreatorimpl.hxx2
-rw-r--r--xmlsecurity/inc/framework/signatureengine.hxx2
-rw-r--r--xmlsecurity/inc/framework/signatureverifierimpl.hxx2
4 files changed, 3 insertions, 9 deletions
diff --git a/xmlsecurity/inc/framework/securityengine.hxx b/xmlsecurity/inc/framework/securityengine.hxx
index dbb4dbfe5777..6e40d7fd8b53 100644
--- a/xmlsecurity/inc/framework/securityengine.hxx
+++ b/xmlsecurity/inc/framework/securityengine.hxx
@@ -129,12 +129,6 @@ protected:
virtual void notifyResultListener() const
{};
- /*
- * checks whether everything is ready.
- * Any derived class will implement this method respectively.
- */
- virtual bool checkReady() const { return true; };
-
public:
/* XReferenceResolvedListener */
virtual void SAL_CALL referenceResolved( sal_Int32 referenceId ) override;
diff --git a/xmlsecurity/inc/framework/signaturecreatorimpl.hxx b/xmlsecurity/inc/framework/signaturecreatorimpl.hxx
index b7fffec12c6c..8637f29395bf 100644
--- a/xmlsecurity/inc/framework/signaturecreatorimpl.hxx
+++ b/xmlsecurity/inc/framework/signaturecreatorimpl.hxx
@@ -61,7 +61,7 @@ private:
virtual void notifyResultListener() const override;
virtual void clearUp( ) const override;
- virtual bool checkReady() const override;
+ bool checkReady() const;
virtual void startEngine( const rtl::Reference<XMLSignatureTemplateImpl>& xSignatureTemplate) override;
public:
diff --git a/xmlsecurity/inc/framework/signatureengine.hxx b/xmlsecurity/inc/framework/signatureengine.hxx
index 62c0c5c5f24f..f1f53d4412a0 100644
--- a/xmlsecurity/inc/framework/signatureengine.hxx
+++ b/xmlsecurity/inc/framework/signatureengine.hxx
@@ -90,7 +90,7 @@ protected:
virtual void tryToPerform( ) override;
virtual void clearUp( ) const override;
- virtual bool checkReady() const override;
+ bool checkReady() const;
/*
* starts the main function. This method will be implemented by any sub-class.
diff --git a/xmlsecurity/inc/framework/signatureverifierimpl.hxx b/xmlsecurity/inc/framework/signatureverifierimpl.hxx
index d3b8c8e166f6..7c609804aa85 100644
--- a/xmlsecurity/inc/framework/signatureverifierimpl.hxx
+++ b/xmlsecurity/inc/framework/signatureverifierimpl.hxx
@@ -55,7 +55,7 @@ private:
css::uno::Reference< css::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext;
virtual void notifyResultListener() const override;
- virtual bool checkReady() const override;
+ bool checkReady() const;
virtual void startEngine( const rtl::Reference<XMLSignatureTemplateImpl>& xSignatureTemplate) override;
public: