summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/documenttype.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-16 11:07:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-16 12:21:07 +0200
commitd8d7bd68abfcd38bc5d7e7356cad50d9b44d5625 (patch)
tree42964bd47a79963a0c9c4ee1d4dcc1f7484c2049 /unoxml/source/dom/documenttype.cxx
parent-Werror,-Wunused-private-field (Clang towards 3.2) (diff)
downloadcore-d8d7bd68abfcd38bc5d7e7356cad50d9b44d5625.tar.gz
core-d8d7bd68abfcd38bc5d7e7356cad50d9b44d5625.zip
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: Ibd5b7b03a80036ebd3214930b32d011ba7bbce9a
Diffstat (limited to 'unoxml/source/dom/documenttype.cxx')
-rw-r--r--unoxml/source/dom/documenttype.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/dom/documenttype.cxx b/unoxml/source/dom/documenttype.cxx
index 0a2197ef24c4..30a1e054c1ed 100644
--- a/unoxml/source/dom/documenttype.cxx
+++ b/unoxml/source/dom/documenttype.cxx
@@ -48,7 +48,7 @@ namespace DOM
Reference< XNamedNodeMap > aMap;
if (m_aDtdPtr != NULL)
{
- aMap.set(new CEntitiesMap(this, m_rMutex));
+ aMap.set(new CEntitiesMap(this));
}
return aMap;
}
@@ -89,7 +89,7 @@ namespace DOM
Reference< XNamedNodeMap > aMap;
if (m_aDtdPtr != NULL)
{
- aMap.set(new CNotationsMap(this, m_rMutex));
+ aMap.set(new CNotationsMap(this));
}
return aMap;
}