summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-11-11 08:21:45 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-11-11 08:21:45 +0000
commit9e8295e1edfb4b8840b6baa690da430027fd6084 (patch)
treedc05e64ffc7df6f87a4e9883358e1abf45a6f6e2 /xmlsecurity
parentde4370433bf7ba84e9cabb196a218dda4b624763 (diff)
INTEGRATION: CWS xmlsec13 (1.7.16); FILE MERGED
2005/11/02 12:44:23 jl 1.7.16.1: #54495#
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/workben/signaturetest.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/workben/signaturetest.cxx b/xmlsecurity/workben/signaturetest.cxx
index 45fa7a05b56b..b12c654cb508 100644
--- a/xmlsecurity/workben/signaturetest.cxx
+++ b/xmlsecurity/workben/signaturetest.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: signaturetest.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 17:47:08 $
+ * last change: $Author: rt $ $Date: 2005-11-11 09:21:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -395,11 +395,11 @@ IMPL_LINK( MyWin, VerifyDigitalSignaturesHdl, Button*, EMPTYARG )
comphelper::getProcessServiceFactory()->createInstance( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( "com.sun.star.security.DocumentDigitalSignatures" ) ) ), uno::UNO_QUERY );
if ( xD.is() )
{
- uno::Sequence< security::DocumentSignaturesInformation > aInfos = xD->verifyDocumentContentSignatures( xStore, NULL );
+ uno::Sequence< security::DocumentSignatureInformation > aInfos = xD->verifyDocumentContentSignatures( xStore, NULL );
int nInfos = aInfos.getLength();
for ( int n = 0; n < nInfos; n++ )
{
- security::DocumentSignaturesInformation& rInf = aInfos[n];
+ security::DocumentSignatureInformation& rInf = aInfos[n];
String aText( RTL_CONSTASCII_USTRINGPARAM( "The document is signed by\n\n " ) );
aText += String( rInf.Signer->getSubjectName() );
aText += String( RTL_CONSTASCII_USTRINGPARAM( "\n\n The signature is " ) );