diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 11:16:07 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-17 12:26:32 +0000 |
commit | d9e627039245dc42f003a7cf75642f619a621513 (patch) | |
tree | d10188cbdf0808f4c4c6663025e15bd4bac47284 /include/sax | |
parent | be3d2309f0376914b0135046f95b0bb592cf5078 (diff) |
loplugin:unnecessaryvirtual
update the plugin with lessons learned from the mergeclasses plugin and
re-run it
Change-Id: I9d622eb3d05fceaf8fa764c533c8fa5dfb4c7711
Reviewed-on: https://gerrit.libreoffice.org/20015
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sax')
-rw-r--r-- | include/sax/tools/documenthandleradapter.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sax/tools/documenthandleradapter.hxx b/include/sax/tools/documenthandleradapter.hxx index 10b945f83a8a..b36a49705a09 100644 --- a/include/sax/tools/documenthandleradapter.hxx +++ b/include/sax/tools/documenthandleradapter.hxx @@ -88,12 +88,12 @@ namespace sax ; protected: - virtual void SAL_CALL + void SAL_CALL setDelegate(const css::uno::Reference< css::xml::sax::XDocumentHandler >& delegate) { m_handler = delegate; } - virtual css::uno::Reference< css::xml::sax::XDocumentHandler > SAL_CALL + css::uno::Reference< css::xml::sax::XDocumentHandler > SAL_CALL getDelegate() { return m_handler; @@ -210,12 +210,12 @@ namespace sax { } - virtual void SAL_CALL + void SAL_CALL setDelegate(const css::uno::Reference< css::xml::sax::XExtendedDocumentHandler >& delegate) { m_handler = delegate; } - virtual css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > SAL_CALL + css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > SAL_CALL getDelegate() { return m_handler; |