diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-11-24 11:28:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-11-24 11:28:35 +0100 |
commit | 31e2e2de4571139bde2fe55a986c8b067cca1dee (patch) | |
tree | 716245faefab5d63ecdfd1d0e80e847c366f348e /unoxml | |
parent | 675df4a72e7cc695fec18869dd015a872c287c6e (diff) |
loplugin:unnecessaryoverride (dtors) in unoxml
Change-Id: Ieca0d355031f25731a519be26145cda3b2172cb1
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/dom/elementlist.cxx | 4 | ||||
-rw-r--r-- | unoxml/source/rdf/CBlankNode.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/rdf/CLiteral.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/rdf/CURI.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/rdf/librdf_repository.cxx | 2 |
5 files changed, 0 insertions, 9 deletions
diff --git a/unoxml/source/dom/elementlist.cxx b/unoxml/source/dom/elementlist.cxx index 3b38cc73ddb6..c851faf426b3 100644 --- a/unoxml/source/dom/elementlist.cxx +++ b/unoxml/source/dom/elementlist.cxx @@ -44,10 +44,6 @@ namespace { } - virtual ~WeakEventListener() override - { - } - virtual void SAL_CALL handleEvent(const css::uno::Reference<css::xml::dom::events::XEvent>& rEvent) throw(css::uno::RuntimeException, std::exception) override { diff --git a/unoxml/source/rdf/CBlankNode.cxx b/unoxml/source/rdf/CBlankNode.cxx index 47f5af263172..761082c27906 100644 --- a/unoxml/source/rdf/CBlankNode.cxx +++ b/unoxml/source/rdf/CBlankNode.cxx @@ -39,7 +39,6 @@ class CBlankNode: { public: CBlankNode(); - virtual ~CBlankNode() override {} // css::lang::XServiceInfo: virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; diff --git a/unoxml/source/rdf/CLiteral.cxx b/unoxml/source/rdf/CLiteral.cxx index 9d488d9e991b..bfcf0f150c98 100644 --- a/unoxml/source/rdf/CLiteral.cxx +++ b/unoxml/source/rdf/CLiteral.cxx @@ -41,7 +41,6 @@ class CLiteral: { public: explicit CLiteral(); - virtual ~CLiteral() override {} // css::lang::XServiceInfo: virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; diff --git a/unoxml/source/rdf/CURI.cxx b/unoxml/source/rdf/CURI.cxx index 82413a07dc5b..6473ae3d78b7 100644 --- a/unoxml/source/rdf/CURI.cxx +++ b/unoxml/source/rdf/CURI.cxx @@ -40,7 +40,6 @@ class CURI: { public: explicit CURI(); - virtual ~CURI() override {} // css::lang::XServiceInfo: virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index 1cb823070b70..5d0de18041a9 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -695,8 +695,6 @@ public: , m_xName(i_xName) { }; - virtual ~librdf_NamedGraph() override {} - // css::rdf::XNode: virtual OUString SAL_CALL getStringValue() throw (uno::RuntimeException, std::exception) override; |