summaryrefslogtreecommitdiff
path: root/unoxml/source/dom
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom')
-rw-r--r--unoxml/source/dom/attr.hxx3
-rw-r--r--unoxml/source/dom/cdatasection.hxx1
-rw-r--r--unoxml/source/dom/comment.hxx2
-rw-r--r--unoxml/source/dom/documentfragment.hxx2
-rw-r--r--unoxml/source/dom/documenttype.hxx2
-rw-r--r--unoxml/source/dom/entity.hxx2
-rw-r--r--unoxml/source/dom/entityreference.hxx1
-rw-r--r--unoxml/source/dom/notation.hxx1
-rw-r--r--unoxml/source/dom/processinginstruction.hxx1
9 files changed, 0 insertions, 15 deletions
diff --git a/unoxml/source/dom/attr.hxx b/unoxml/source/dom/attr.hxx
index cc0f2d94071b..f2091328da72 100644
--- a/unoxml/source/dom/attr.hxx
+++ b/unoxml/source/dom/attr.hxx
@@ -41,14 +41,11 @@ namespace DOM
class CAttr
: public CAttr_Base
{
- private:
friend class CDocument;
- private:
xmlAttrPtr m_aAttrPtr;
::std::unique_ptr< stringpair_t > m_pNamespace;
- protected:
CAttr(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlAttrPtr const pAttr);
diff --git a/unoxml/source/dom/cdatasection.hxx b/unoxml/source/dom/cdatasection.hxx
index fdd0a87b2a54..bd7e60cc2e55 100644
--- a/unoxml/source/dom/cdatasection.hxx
+++ b/unoxml/source/dom/cdatasection.hxx
@@ -36,7 +36,6 @@ namespace DOM
{
friend class CDocument;
- protected:
CCDATASection(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNodePtr const pNode);
diff --git a/unoxml/source/dom/comment.hxx b/unoxml/source/dom/comment.hxx
index 3ce9362606f4..1841e313ce6e 100644
--- a/unoxml/source/dom/comment.hxx
+++ b/unoxml/source/dom/comment.hxx
@@ -34,10 +34,8 @@ namespace DOM
class CComment
: public CComment_Base
{
- private:
friend class CDocument;
- protected:
CComment(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNodePtr const pNode);
diff --git a/unoxml/source/dom/documentfragment.hxx b/unoxml/source/dom/documentfragment.hxx
index 8ed4481484bc..ba82735d36e7 100644
--- a/unoxml/source/dom/documentfragment.hxx
+++ b/unoxml/source/dom/documentfragment.hxx
@@ -34,10 +34,8 @@ namespace DOM
class CDocumentFragment
: public CDocumentFragment_Base
{
- private:
friend class CDocument;
- protected:
CDocumentFragment(
CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNodePtr const pNode);
diff --git a/unoxml/source/dom/documenttype.hxx b/unoxml/source/dom/documenttype.hxx
index 1987fb8e110d..964bab03804f 100644
--- a/unoxml/source/dom/documenttype.hxx
+++ b/unoxml/source/dom/documenttype.hxx
@@ -43,10 +43,8 @@ namespace DOM
private:
friend class CDocument;
- private:
xmlDtdPtr m_aDtdPtr;
- protected:
CDocumentType(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlDtdPtr const pDtd);
diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx
index 51c10ce00005..bed4820bec9b 100644
--- a/unoxml/source/dom/entity.hxx
+++ b/unoxml/source/dom/entity.hxx
@@ -41,10 +41,8 @@ namespace DOM
private:
friend class CDocument;
- private:
xmlEntityPtr m_aEntityPtr;
- protected:
CEntity(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlEntityPtr const pEntity);
diff --git a/unoxml/source/dom/entityreference.hxx b/unoxml/source/dom/entityreference.hxx
index 711818d7e948..c22390399192 100644
--- a/unoxml/source/dom/entityreference.hxx
+++ b/unoxml/source/dom/entityreference.hxx
@@ -39,7 +39,6 @@ namespace DOM
private:
friend class CDocument;
- protected:
CEntityReference(
CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNodePtr const pNode);
diff --git a/unoxml/source/dom/notation.hxx b/unoxml/source/dom/notation.hxx
index 099905acf3ac..58edd720feb5 100644
--- a/unoxml/source/dom/notation.hxx
+++ b/unoxml/source/dom/notation.hxx
@@ -38,7 +38,6 @@ namespace DOM
private:
friend class CDocument;
- protected:
CNotation(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNotationPtr const pNotation);
diff --git a/unoxml/source/dom/processinginstruction.hxx b/unoxml/source/dom/processinginstruction.hxx
index 0920edec47ba..d3233ea5bcaa 100644
--- a/unoxml/source/dom/processinginstruction.hxx
+++ b/unoxml/source/dom/processinginstruction.hxx
@@ -39,7 +39,6 @@ namespace DOM
private:
friend class CDocument;
- protected:
CProcessingInstruction(
CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNodePtr const pNode);