summaryrefslogtreecommitdiff
path: root/unoxml
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 /unoxml
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 'unoxml')
-rw-r--r--unoxml/source/dom/attr.cxx2
-rw-r--r--unoxml/source/dom/node.cxx2
-rw-r--r--unoxml/source/events/eventdispatcher.cxx2
-rw-r--r--unoxml/source/xpath/xpathapi.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/unoxml/source/dom/attr.cxx b/unoxml/source/dom/attr.cxx
index d6ee2ef72b84..fa8eb9af9791 100644
--- a/unoxml/source/dom/attr.cxx
+++ b/unoxml/source/dom/attr.cxx
@@ -139,7 +139,7 @@ namespace DOM
sal_Bool SAL_CALL CAttr::getSpecified()
throw (RuntimeException, std::exception)
{
- // FIXME if this DOM implemenatation supported DTDs it would need
+ // FIXME if this DOM implementation supported DTDs it would need
// to check that this attribute is not default or something
return sal_True;
}
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index c0c28e148c96..197512072710 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -952,7 +952,7 @@ namespace DOM
void SAL_CALL CNode::setNodeValue(const OUString& /*nodeValue*/)
throw (RuntimeException, DOMException, std::exception)
{
- // use specific node implememntation
+ // use specific node implementation
// if we end up down here, something went wrong
DOMException e;
e.Code = DOMExceptionType_NO_MODIFICATION_ALLOWED_ERR;
diff --git a/unoxml/source/events/eventdispatcher.cxx b/unoxml/source/events/eventdispatcher.cxx
index b58e67f454b8..7fd7a48685c9 100644
--- a/unoxml/source/events/eventdispatcher.cxx
+++ b/unoxml/source/events/eventdispatcher.cxx
@@ -204,7 +204,7 @@ namespace DOM { namespace events {
}
// the capture vector now holds the node path from target to root
- // first we must search for capture listernes in order root to
+ // first we must search for capture listeners in order root to
// to target. after that, any target listeners have to be called
// then bubbeling phase listeners are called in target to root
// order
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index 937ac4f9af47..6452a42addfb 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -220,7 +220,7 @@ namespace XPath
}
/**
- * same as selectNodeList but registers all name space decalratiosn found on namespaceNode
+ * same as selectNodeList but registers all name space declarations found on namespaceNode
*/
Reference< XNodeList > SAL_CALL CXPathAPI::selectNodeListNS(
const Reference< XNode >& contextNode,