From 0ac89e300f936a7f731ece3d286849e67cf44a40 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 17 Apr 2016 15:05:06 +0200 Subject: Avoid reserved identifier Change-Id: I2577b4986f1b033253b368c570507e757893f98c --- xmlsecurity/source/component/documentdigitalsignatures.cxx | 4 ++-- 1 file 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(); } -- cgit