Kaydet (Commit) d8d7bd68 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-private-field (Clang towards 3.2)

Change-Id: Ibd5b7b03a80036ebd3214930b32d011ba7bbce9a
üst bef6471c
......@@ -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;
}
......
......@@ -24,10 +24,8 @@
namespace DOM
{
CEntitiesMap::CEntitiesMap(::rtl::Reference<CDocumentType> const& pDocType,
::osl::Mutex & rMutex)
CEntitiesMap::CEntitiesMap(::rtl::Reference<CDocumentType> const& pDocType)
: m_pDocType(pDocType)
, m_rMutex(rMutex)
{
}
......
......@@ -43,11 +43,9 @@ namespace DOM
{
private:
::rtl::Reference<CDocumentType> const m_pDocType;
::osl::Mutex & m_rMutex;
public:
CEntitiesMap(::rtl::Reference<CDocumentType> const& pDocType,
::osl::Mutex & rMutex);
CEntitiesMap(::rtl::Reference<CDocumentType> const& pDocType);
/**
The number of nodes in this map.
......
......@@ -25,10 +25,8 @@
namespace DOM
{
CNotationsMap::CNotationsMap(
::rtl::Reference<CDocumentType> const& pDocType,
::osl::Mutex & rMutex)
::rtl::Reference<CDocumentType> const& pDocType)
: m_pDocType(pDocType)
, m_rMutex(rMutex)
{
}
......
......@@ -43,11 +43,9 @@ namespace DOM
{
private:
::rtl::Reference<CDocumentType> const m_pDocType;
::osl::Mutex & m_rMutex;
public:
CNotationsMap(::rtl::Reference<CDocumentType> const& pDocType,
::osl::Mutex & rMutex);
CNotationsMap(::rtl::Reference<CDocumentType> const& pDocType);
/**
The number of nodes in this map.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment