summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-05 10:25:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-05 15:07:23 +0200
commit2bdf80be4c822378ba101703e4051a37c8f2ad41 (patch)
tree158da830eb78da0b9adf6db850fca80a53571428 /unoxml
parentb6d6591fafb8ad2e59a27ff1ac6b234d879b4cf7 (diff)
loplugin:finalclasses in unotools..vbahelper
Change-Id: I9350f9d37eaba99a1d74e103c969a9dcfe795497 Reviewed-on: https://gerrit.libreoffice.org/43160 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoxml')
-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
-rw-r--r--unoxml/source/events/mouseevent.hxx1
-rw-r--r--unoxml/source/events/mutationevent.hxx1
11 files changed, 0 insertions, 17 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);
diff --git a/unoxml/source/events/mouseevent.hxx b/unoxml/source/events/mouseevent.hxx
index 2b274713e75d..87ea75a2bb66 100644
--- a/unoxml/source/events/mouseevent.hxx
+++ b/unoxml/source/events/mouseevent.hxx
@@ -35,7 +35,6 @@ typedef ::cppu::ImplInheritanceHelper< CUIEvent, css::xml::dom::events::XMouseEv
class CMouseEvent
: public CMouseEvent_Base
{
-protected:
sal_Int32 m_screenX;
sal_Int32 m_screenY;
sal_Int32 m_clientX;
diff --git a/unoxml/source/events/mutationevent.hxx b/unoxml/source/events/mutationevent.hxx
index 413d062e6f9a..c8dfc3aed1a0 100644
--- a/unoxml/source/events/mutationevent.hxx
+++ b/unoxml/source/events/mutationevent.hxx
@@ -40,7 +40,6 @@ typedef ::cppu::ImplInheritanceHelper< CEvent, css::xml::dom::events::XMutationE
class CMutationEvent
: public CMutationEvent_Base
{
-protected:
css::uno::Reference< css::xml::dom::XNode > m_relatedNode;
OUString m_prevValue;
OUString m_newValue;