summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-25 14:45:38 +0200
committerNoel Grandin <noel@peralex.com>2015-11-26 13:26:25 +0200
commitabc6071b7a8af354a56c91e4caecd8afc79f55cc (patch)
treeff8b64d3763a6192f8c67e750e830d7f3a6b13bf /unoxml
parent7c2edb3a67cf2e156f2134dc8f56fb6aac3045e2 (diff)
loplugin:unusedfields various
Change-Id: I18f94269a1172cf195ee402384f7144610e1e82d
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/dom/notation.cxx1
-rw-r--r--unoxml/source/dom/notation.hxx3
2 files changed, 0 insertions, 4 deletions
diff --git a/unoxml/source/dom/notation.cxx b/unoxml/source/dom/notation.cxx
index f64e31bca34b..9f2aca2bec6f 100644
--- a/unoxml/source/dom/notation.cxx
+++ b/unoxml/source/dom/notation.cxx
@@ -32,7 +32,6 @@ namespace DOM
xmlNotationPtr const pNotation)
: CNotation_Base(rDocument, rMutex,
NodeType_NOTATION_NODE, reinterpret_cast<xmlNodePtr>(pNotation))
- , m_aNotationPtr(pNotation)
{
}
diff --git a/unoxml/source/dom/notation.hxx b/unoxml/source/dom/notation.hxx
index 323861f71433..434b1b8d486c 100644
--- a/unoxml/source/dom/notation.hxx
+++ b/unoxml/source/dom/notation.hxx
@@ -38,9 +38,6 @@ namespace DOM
private:
friend class CDocument;
- private:
- xmlNotationPtr m_aNotationPtr;
-
protected:
CNotation(CDocument const& rDocument, ::osl::Mutex const& rMutex,
xmlNotationPtr const pNotation);