summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/component
diff options
context:
space:
mode:
authorMichael Mi <mmi@openoffice.org>2004-08-12 01:29:21 +0000
committerMichael Mi <mmi@openoffice.org>2004-08-12 01:29:21 +0000
commit690e909ef771703ef848cda41df753d3f96491b0 (patch)
treeaa30f22eca1afeed50ac16fc4fd089b09432dca1 /xmlsecurity/source/component
parent2d9016f7b011c9295b0a618479c51c01ae36826a (diff)
change datetime format to ISO string
Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'xmlsecurity/source/component')
-rw-r--r--xmlsecurity/source/component/documentdigitalsignatures.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx
index eadaf3c4b2e8..5d1358999015 100644
--- a/xmlsecurity/source/component/documentdigitalsignatures.cxx
+++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: documentdigitalsignatures.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: mt $ $Date: 2004-07-27 11:55:25 $
+ * last change: $Author: mmi $ $Date: 2004-08-12 02:29:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -185,8 +185,11 @@ com::sun::star::uno::Sequence< ::com::sun::star::security::DocumentSignaturesInf
if ( !aInfos[n].Signer.is() )
aInfos[n].Signer = xSecEnv->createCertificateFromAscii( rInfo.ouX509Certificate ) ;
+ // MM : the ouDate and ouTime fields have been replaced with stDateTime (com::sun::star::util::DataTime)
+ /*
aInfos[n].SignatureDate = String( rInfo.ouDate ).ToInt32();
aInfos[n].SignatureTime = String( rInfo.ouTime ).ToInt32();
+ */
DBG_ASSERT( rInfo.nStatus != STATUS_INIT, "Signature not processed!" );