diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-13 09:21:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-13 10:25:40 +0200 |
commit | 9f4e283fc8af97c4599e21006ad73b73fc141f81 (patch) | |
tree | 1fac92c1ca7056daf09e81c4174f8371d116fa55 /xmlsecurity/source/helper/xmlsignaturehelper.cxx | |
parent | 194cea28985867957783965bc19a31513b1d603e (diff) |
loplugin:sallogareas
Change-Id: I6ce045db236b81aa8bc7bce2a0e20c4132c5931f
Diffstat (limited to 'xmlsecurity/source/helper/xmlsignaturehelper.cxx')
-rw-r--r-- | xmlsecurity/source/helper/xmlsignaturehelper.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper.cxx b/xmlsecurity/source/helper/xmlsignaturehelper.cxx index b4dd0c181a5c..a79a98213c10 100644 --- a/xmlsecurity/source/helper/xmlsignaturehelper.cxx +++ b/xmlsecurity/source/helper/xmlsignaturehelper.cxx @@ -74,8 +74,8 @@ XMLSignatureHelper::~XMLSignatureHelper() bool XMLSignatureHelper::Init() { - SAL_WARN_IF( mxSEInitializer.is(), "xmlsecurity", "XMLSignatureHelper::Init - mxSEInitializer already set!" ); - SAL_WARN_IF( mxSecurityContext.is(), "xmlsecurity", "XMLSignatureHelper::Init - mxSecurityContext already set!" ); + SAL_WARN_IF( mxSEInitializer.is(), "xmlsecurity.helper", "XMLSignatureHelper::Init - mxSEInitializer already set!" ); + SAL_WARN_IF( mxSecurityContext.is(), "xmlsecurity.helper", "XMLSignatureHelper::Init - mxSecurityContext already set!" ); mxSEInitializer = css::xml::crypto::SEInitializer::create( mxCtx ); @@ -89,9 +89,9 @@ void XMLSignatureHelper::SetStorage( const Reference < css::embed::XStorage >& rxStorage, const OUString& sODFVersion) { - SAL_WARN_IF( mxUriBinding.is(), "xmlsecurity", "SetStorage - UriBinding already set!" ); + SAL_WARN_IF( mxUriBinding.is(), "xmlsecurity.helper", "SetStorage - UriBinding already set!" ); mxUriBinding = new UriBindingHelper( rxStorage ); - SAL_WARN_IF(!rxStorage.is(), "xmlsecurity", "SetStorage - empty storage!"); + SAL_WARN_IF(!rxStorage.is(), "xmlsecurity.helper", "SetStorage - empty storage!"); mbODFPre1_2 = DocumentSignatureHelper::isODFPre_1_2(sODFVersion); } @@ -256,7 +256,7 @@ bool XMLSignatureHelper::ReadAndVerifySignature( const css::uno::Reference< css: { mbError = false; - SAL_WARN_IF(!xInputStream.is(), "xmlsecurity", "input stream missing"); + SAL_WARN_IF(!xInputStream.is(), "xmlsecurity.helper", "input stream missing"); /* * prepare ParserInputSrouce |