summaryrefslogtreecommitdiff
path: root/xmlsecurity/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-01-09 22:55:28 +0100
committerAshod Nakashian <ashnakash@gmail.com>2016-01-10 14:17:20 +0000
commit64d624b65124ac02d8ee59b135593fd9d8eb9067 (patch)
tree772fc0f308549b9416fbcb06bce2bf0e0f5809cc /xmlsecurity/source
parentd61c16966b017abdbebf5ec0c2131de5a91c67f8 (diff)
Fix typos
Change-Id: I9a5940027423ff0791fa7da0b79b617412ce6b86 Reviewed-on: https://gerrit.libreoffice.org/21209 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'xmlsecurity/source')
-rw-r--r--xmlsecurity/source/component/documentdigitalsignatures.cxx2
-rw-r--r--xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx2
-rw-r--r--xmlsecurity/source/framework/buffernode.cxx2
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.cxx2
-rw-r--r--xmlsecurity/source/helper/xsecctl.hxx2
-rw-r--r--xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx2
-rw-r--r--xmlsecurity/source/xmlsec/saxhelper.cxx4
7 files changed, 8 insertions, 8 deletions
diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx
index f020df44b537..8406fc540ebb 100644
--- a/xmlsecurity/source/component/documentdigitalsignatures.cxx
+++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx
@@ -261,7 +261,7 @@ DocumentDigitalSignatures::ImplVerifySignatures(
DBG_ASSERT(false, "Error, no XStorage provided");
return Sequence<css::security::DocumentSignatureInformation>();
}
- // First check for the InputStream, to avoid unnecessary initialization of the security environemnt...
+ // First check for the InputStream, to avoid unnecessary initialization of the security environment...
SignatureStreamHelper aStreamHelper;
Reference< io::XInputStream > xInputStream = xSignStream;
diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index 590a8a90427e..0d4319c60a89 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
@@ -762,7 +762,7 @@ void DigitalSignaturesDialog::ImplShowSignaturesDetails()
if (!xCert.is())
xCert = xSecEnv->getCertificate( rInfo.ouX509IssuerName, xSerialNumberAdapter->toSequence( rInfo.ouX509SerialNumber ) );
- DBG_ASSERT( xCert.is(), "Error getting cCertificate!" );
+ DBG_ASSERT( xCert.is(), "Error getting Certificate!" );
if ( xCert.is() )
{
ScopedVclPtrInstance< CertificateViewer > aViewer( this, maSignatureHelper.GetSecurityEnvironment(), xCert, false );
diff --git a/xmlsecurity/source/framework/buffernode.cxx b/xmlsecurity/source/framework/buffernode.cxx
index 2a101d649690..f68b28b4ce8e 100644
--- a/xmlsecurity/source/framework/buffernode.cxx
+++ b/xmlsecurity/source/framework/buffernode.cxx
@@ -90,7 +90,7 @@ void BufferNode::setReceivedAll()
*
* NAME
* setReceivedAll -- indicates that the element in this BufferNode has
- * been compeletely bufferred.
+ * been completely bufferred.
*
* SYNOPSIS
* setReceivedAll();
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
index c226edf3e1f3..036b541fe425 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
@@ -876,7 +876,7 @@ sal_Int32 SAXEventKeeperImpl::createElementCollector(
*
* INPUTS
* nSecurityId - the security Id of the new ElementCollector
- * nPriority - the prirority of the new ElementCollector
+ * nPriority - the priority of the new ElementCollector
* bModifyElement -whether this BufferNode will modify the content of
* the corresponding element it works on
* xReferenceResolvedListener - the listener for the new ElementCollector.
diff --git a/xmlsecurity/source/helper/xsecctl.hxx b/xmlsecurity/source/helper/xsecctl.hxx
index b19ee700d57f..916fb3cac3c2 100644
--- a/xmlsecurity/source/helper/xsecctl.hxx
+++ b/xmlsecurity/source/helper/xsecctl.hxx
@@ -217,7 +217,7 @@ private:
com::sun::star::uno::Reference<
com::sun::star::uno::XInterface > m_xPreviousNodeOnSAXChain;
/*
- * whether the previous node can provide an XInitiazlize interface,
+ * whether the previous node can provide an XInitialize interface,
* use this variable in order to typecast the XInterface to the
* correct interface type.
*/
diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
index 8d367b782edc..be7957b2a9a8 100644
--- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
+++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx
@@ -707,7 +707,7 @@ verifyCertificate( const Reference< csss::XCertificate >& aCert,
cvout[1].value.pointer.log = &log;
cvout[2].type = cert_po_end;
- // We check SSL server certificates, CA certificates and signing sertificates.
+ // We check SSL server certificates, CA certificates and signing certificates.
//
// ToDo check keyusage, looking at CERT_KeyUsageAndTypeForCertUsage (
// mozilla/security/nss/lib/certdb/certdb.c indicates that
diff --git a/xmlsecurity/source/xmlsec/saxhelper.cxx b/xmlsecurity/source/xmlsec/saxhelper.cxx
index b1b779324cea..336d5637d5c6 100644
--- a/xmlsecurity/source/xmlsec/saxhelper.cxx
+++ b/xmlsecurity/source/xmlsec/saxhelper.cxx
@@ -164,7 +164,7 @@ SAXHelper::SAXHelper( )
/**
* Destructor
*
- * In this destructor, a libxml sax parser context is desturcted. The XML tree
+ * In this destructor, a libxml sax parser context is destructed. The XML tree
* in the context is not deallocated because the tree is bind with a document
* model by the setTargetDocument method, which delegate the target document to
* destruct the xml tree.
@@ -341,7 +341,7 @@ void SAXHelper::ignorableWhitespace( const OUString& aWhitespaces )
}
/**
- * XDocumentHandler -- preaorocessing instruction
+ * XDocumentHandler -- preprocessing instruction
*/
void SAXHelper::processingInstruction(
const OUString& aTarget,