summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/dom/document.cxx2
-rw-r--r--unoxml/source/dom/elementlist.cxx2
-rw-r--r--unoxml/source/dom/node.cxx2
-rw-r--r--unoxml/source/events/eventdispatcher.cxx4
4 files changed, 5 insertions, 5 deletions
diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx
index 85cfdcc4e8a2..cd5dda474c22 100644
--- a/unoxml/source/dom/document.cxx
+++ b/unoxml/source/dom/document.cxx
@@ -942,7 +942,7 @@ namespace DOM
if (nullptr == m_aNodePtr) {
return nullptr;
}
- xmlDocPtr const pClone(xmlCopyDoc(m_aDocPtr, (bDeep) ? 1 : 0));
+ xmlDocPtr const pClone(xmlCopyDoc(m_aDocPtr, bDeep ? 1 : 0));
if (nullptr == pClone) { return nullptr; }
Reference< XNode > const xRet(
static_cast<CNode*>(CDocument::CreateCDocument(pClone).get()));
diff --git a/unoxml/source/dom/elementlist.cxx b/unoxml/source/dom/elementlist.cxx
index 7634a6e07d92..01cf55720b78 100644
--- a/unoxml/source/dom/elementlist.cxx
+++ b/unoxml/source/dom/elementlist.cxx
@@ -82,7 +82,7 @@ namespace DOM
: m_pElement(pElement)
, m_rMutex(rMutex)
, m_pName(lcl_initXmlString(rName))
- , m_pURI((pURI) ? lcl_initXmlString(*pURI) : nullptr)
+ , m_pURI(pURI ? lcl_initXmlString(*pURI) : nullptr)
, m_bRebuild(true)
{
}
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index 7a32acb59b45..1508ea80a23f 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -393,7 +393,7 @@ namespace DOM
return nullptr;
}
::rtl::Reference<CNode> const pNode = GetOwnerDocument().GetCNode(
- xmlCopyNode(m_aNodePtr, (bDeep) ? 1 : 0));
+ xmlCopyNode(m_aNodePtr, bDeep ? 1 : 0));
if (!pNode.is()) { return nullptr; }
pNode->m_bUnlinked = true; // not linked yet
return pNode.get();
diff --git a/unoxml/source/events/eventdispatcher.cxx b/unoxml/source/events/eventdispatcher.cxx
index 51572eea5e99..27a394940233 100644
--- a/unoxml/source/events/eventdispatcher.cxx
+++ b/unoxml/source/events/eventdispatcher.cxx
@@ -36,7 +36,7 @@ namespace DOM { namespace events {
void CEventDispatcher::addListener(xmlNodePtr pNode, const OUString& aType, const Reference<XEventListener>& aListener, bool bCapture)
{
- TypeListenerMap *const pTMap = (bCapture)
+ TypeListenerMap *const pTMap = bCapture
? (& m_CaptureListeners) : (& m_TargetListeners);
// get the multimap for the specified type
@@ -55,7 +55,7 @@ namespace DOM { namespace events {
void CEventDispatcher::removeListener(xmlNodePtr pNode, const OUString& aType, const Reference<XEventListener>& aListener, bool bCapture)
{
- TypeListenerMap *const pTMap = (bCapture)
+ TypeListenerMap *const pTMap = bCapture
? (& m_CaptureListeners) : (& m_TargetListeners);
// get the multimap for the specified type