summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/xmlsec
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-12-26 13:56:05 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-12-30 09:10:32 +0100
commit8e5844ad2321ae58762e74681baf2895190fa3e3 (patch)
treea42cb3e6a803000f7b0cb36c237020d410229374 /xmlsecurity/source/xmlsec
parent99cecd1f12a1d17822b9b29ceb112c0c48945386 (diff)
Fix typo in code
Change-Id: I671749843ee14b18c4786a132ca9c6ad30efc625 Reviewed-on: https://gerrit.libreoffice.org/65732 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmlsecurity/source/xmlsec')
-rw-r--r--xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx
index b0d0835e8a81..de0cd43f3c8f 100644
--- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx
+++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx
@@ -51,7 +51,7 @@ namespace cssxw = com::sun::star::xml::wrapper;
/* used by the recursiveDelete method */
#define NODE_REMOVED 0
#define NODE_NOTREMOVED 1
-#define NODE_STOPED 2
+#define NODE_STOPPED 2
XMLDocumentWrapper_XmlSecImpl::XMLDocumentWrapper_XmlSecImpl()
: m_nCurrentPosition(0)
@@ -421,7 +421,7 @@ sal_Int32 XMLDocumentWrapper_XmlSecImpl::recursiveDelete(
* RESULT
* result - the result of the deletion process, can be one of following
* values:
- * NODE_STOPED - the process is interrupted by meeting the
+ * NODE_STOPPED - the process is interrupted by meeting the
* m_pStopAtNode
* NODE_NOTREMOVED - the pNode is not completely removed
* because there is its descendant in the
@@ -436,7 +436,7 @@ sal_Int32 XMLDocumentWrapper_XmlSecImpl::recursiveDelete(
{
if (pNode == m_pStopAtNode)
{
- return NODE_STOPED;
+ return NODE_STOPPED;
}
if (pNode != m_pCurrentReservedNode)
@@ -454,8 +454,8 @@ sal_Int32 XMLDocumentWrapper_XmlSecImpl::recursiveDelete(
switch (nResult)
{
- case NODE_STOPED:
- return NODE_STOPED;
+ case NODE_STOPPED:
+ return NODE_STOPPED;
case NODE_NOTREMOVED:
bIsRemoved = false;
break;