Avoid reserved identifier

Change-Id: I2577b4986f1b033253b368c570507e757893f98c
This commit is contained in:
Stephan Bergmann
2016-04-17 15:05:06 +02:00
parent 9181f09e28
commit 0ac89e300f

View File

@@ -398,7 +398,7 @@ void DocumentDigitalSignatures::manageTrustedSources( ) throw (RuntimeException
} }
void DocumentDigitalSignatures::showCertificate( 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 ); XMLSignatureHelper aSignatureHelper( mxCtx );
@@ -408,7 +408,7 @@ void DocumentDigitalSignatures::showCertificate(
if ( bInit ) if ( bInit )
{ {
ScopedVclPtrInstance< CertificateViewer > aViewer( nullptr, aSignatureHelper.GetSecurityEnvironment(), _Certificate, false ); ScopedVclPtrInstance< CertificateViewer > aViewer( nullptr, aSignatureHelper.GetSecurityEnvironment(), Certificate, false );
aViewer->Execute(); aViewer->Execute();
} }