diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-17 15:05:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-22 10:21:59 +0200 |
commit | 0ac89e300f936a7f731ece3d286849e67cf44a40 (patch) | |
tree | 8038282bfe2172ece2dc65e3c9f73ebd0e572619 /xmlsecurity | |
parent | 9181f09e28afdee26ffd0ed5f6d0c5dea0669cd1 (diff) |
Avoid reserved identifier
Change-Id: I2577b4986f1b033253b368c570507e757893f98c
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/component/documentdigitalsignatures.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx index 5ccacf67b43c..f510f9c9ec30 100644 --- a/xmlsecurity/source/component/documentdigitalsignatures.cxx +++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx @@ -398,7 +398,7 @@ void DocumentDigitalSignatures::manageTrustedSources( ) throw (RuntimeException } void DocumentDigitalSignatures::showCertificate( - const Reference< css::security::XCertificate >& _Certificate ) throw (RuntimeException, std::exception) + const Reference< css::security::XCertificate >& Certificate ) throw (RuntimeException, std::exception) { XMLSignatureHelper aSignatureHelper( mxCtx ); @@ -408,7 +408,7 @@ void DocumentDigitalSignatures::showCertificate( if ( bInit ) { - ScopedVclPtrInstance< CertificateViewer > aViewer( nullptr, aSignatureHelper.GetSecurityEnvironment(), _Certificate, false ); + ScopedVclPtrInstance< CertificateViewer > aViewer( nullptr, aSignatureHelper.GetSecurityEnvironment(), Certificate, false ); aViewer->Execute(); } |