Kaydet (Commit) 8e5844ad authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo in code

Change-Id: I671749843ee14b18c4786a132ca9c6ad30efc625
Reviewed-on: https://gerrit.libreoffice.org/65732
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 99cecd1f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment