summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/node.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-01-19 20:27:26 +0100
committerMichael Stahl <mst@openoffice.org>2011-01-19 20:27:26 +0100
commitdd995cea7b9a262d51b94d536817e5aa2950f1cb (patch)
tree2e073aa8b06139cc3522d9c4cab58338793d7ff2 /unoxml/source/dom/node.cxx
parent12de6d548b19e4d016e7a7be0980c2d78fe20d17 (diff)
xmlfix3: #i113682#: unoxml: use CDocument mutex in misc classes
Diffstat (limited to 'unoxml/source/dom/node.cxx')
-rw-r--r--unoxml/source/dom/node.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index 501fd134c793..55978a507a67 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -452,7 +452,7 @@ namespace DOM
if (0 == m_aNodePtr) {
return 0;
}
- Reference< XNodeList > const xNodeList(new CChildList(this));
+ Reference< XNodeList > const xNodeList(new CChildList(this, m_rMutex));
return xNodeList;
}