diff options
author | Malte Timmermann <mt@openoffice.org> | 2004-08-18 07:03:58 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2004-08-18 07:03:58 +0000 |
commit | d3e69fe9ce604443baa91ff7cc09862beeefe853 (patch) | |
tree | 1a97a54e0b7740f266bc08a3cb17cc2fae4c3740 /xmlsecurity | |
parent | e215e06d92a5da35fa382bac711a30bee5c1e86a (diff) |
#i20156# Lower case file names
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/helper/documentsignaturehelper.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index 380c28ac9bab..f295d5182b31 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: documentsignaturehelper.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mt $ $Date: 2004-07-22 05:54:33 $ + * last change: $Author: mt $ $Date: 2004-08-18 08:03:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -185,11 +185,11 @@ SignatureStreamHelper DocumentSignatureHelper::OpenSignatureStream( const uno::R { ::rtl::OUString aSIGStreamName; if ( eDocSigMode == SignatureModeDocumentContent ) - aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DocumentSignatures.xml" ) ); + aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "documentsignatures.xml" ) ); else if ( eDocSigMode == SignatureModeMacros ) - aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "MacroSignatures.xml" ) ); + aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "macrosignatures.xml" ) ); else - aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PackageSignatures.xml" ) ); + aSIGStreamName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "packagesignatures.xml" ) ); aHelper.xSignatureStream = aHelper.xSignatureStorage->openStreamElement( aSIGStreamName, nOpenMode ); } |