summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/attributesmap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/attributesmap.cxx')
-rw-r--r--unoxml/source/dom/attributesmap.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/attributesmap.cxx b/unoxml/source/dom/attributesmap.cxx
index d0508f7af3f6..9c93f24a2d20 100644
--- a/unoxml/source/dom/attributesmap.cxx
+++ b/unoxml/source/dom/attributesmap.cxx
@@ -162,8 +162,8 @@ namespace DOM
// no MutexGuard needed: m_pElement is const
Reference< XAttr > const xAttr(m_pElement->getAttributeNode(name));
if (!xAttr.is()) {
- throw DOMException(OUString(RTL_CONSTASCII_USTRINGPARAM(
- "CAttributesMap::removeNamedItem: no such attribute")),
+ throw DOMException(OUString(
+ "CAttributesMap::removeNamedItem: no such attribute"),
static_cast<OWeakObject*>(this),
DOMExceptionType_NOT_FOUND_ERR);
}
@@ -184,8 +184,8 @@ namespace DOM
Reference< XAttr > const xAttr(
m_pElement->getAttributeNodeNS(namespaceURI, localName));
if (!xAttr.is()) {
- throw DOMException(OUString(RTL_CONSTASCII_USTRINGPARAM(
- "CAttributesMap::removeNamedItemNS: no such attribute")),
+ throw DOMException(OUString(
+ "CAttributesMap::removeNamedItemNS: no such attribute"),
static_cast<OWeakObject*>(this),
DOMExceptionType_NOT_FOUND_ERR);
}
@@ -203,8 +203,8 @@ namespace DOM
{
Reference< XAttr > const xAttr(xNode, UNO_QUERY);
if (!xNode.is()) {
- throw DOMException(OUString(RTL_CONSTASCII_USTRINGPARAM(
- "CAttributesMap::setNamedItem: XAttr argument expected")),
+ throw DOMException(OUString(
+ "CAttributesMap::setNamedItem: XAttr argument expected"),
static_cast<OWeakObject*>(this),
DOMExceptionType_HIERARCHY_REQUEST_ERR);
}
@@ -223,8 +223,8 @@ namespace DOM
{
Reference< XAttr > const xAttr(xNode, UNO_QUERY);
if (!xNode.is()) {
- throw DOMException(OUString(RTL_CONSTASCII_USTRINGPARAM(
- "CAttributesMap::setNamedItemNS: XAttr argument expected")),
+ throw DOMException(OUString(
+ "CAttributesMap::setNamedItemNS: XAttr argument expected"),
static_cast<OWeakObject*>(this),
DOMExceptionType_HIERARCHY_REQUEST_ERR);
}