diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-08 12:36:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-10 12:02:44 +0200 |
commit | 366d08f2f6d4de922f6099c62bb81b49d89e0a68 (patch) | |
tree | b232884af6e844c2f0994859e4b42efbc1ce654c /xmlsecurity | |
parent | 75a2257a5bd716a9f937abe5e53f305c983afd5d (diff) |
new loplugin:simplifypointertobool
Change-Id: Iff68e8f379614a6ab6a6e0d1bad18e70bc76d76a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91907
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/inc/documentsignaturemanager.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/inc/documentsignaturemanager.hxx b/xmlsecurity/inc/documentsignaturemanager.hxx index 5bdc679c4726..3d001966f3b0 100644 --- a/xmlsecurity/inc/documentsignaturemanager.hxx +++ b/xmlsecurity/inc/documentsignaturemanager.hxx @@ -120,7 +120,7 @@ public: css::uno::Reference<css::xml::crypto::XXMLSecurityContext> const& getGpgSecurityContext() const; void setStore(const css::uno::Reference<css::embed::XStorage>& xStore) { mxStore = xStore; } XMLSignatureHelper& getSignatureHelper() { return maSignatureHelper; } - bool hasPDFSignatureHelper() const { return mpPDFSignatureHelper.get(); } + bool hasPDFSignatureHelper() const { return bool(mpPDFSignatureHelper); } void setSignatureStream(const css::uno::Reference<css::io::XStream>& xSignatureStream) { mxSignatureStream = xSignatureStream; |