diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-03 10:16:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-03 11:37:53 +0200 |
commit | d9e478330243cbd120f2de33df3333fec2ef9217 (patch) | |
tree | 7372f102ffddff7a8bf5911267f4c776da02dd03 /xmlhelp/source/cxxhelp | |
parent | 50abf47628ad20c3104149a900313f62c34bac9f (diff) |
loplugin:finalclasses in xmlsecurity..UnoControls
Change-Id: I8e942bf37c9173a01bef6e1403ca21f579e7f608
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91612
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlhelp/source/cxxhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/tvfactory.hxx | 2 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/inc/tvread.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx index 9eb8b2f3f0c0..992c9fc3747e 100644 --- a/xmlhelp/source/cxxhelp/inc/tvfactory.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvfactory.hxx @@ -31,7 +31,7 @@ namespace treeview { -class TVFactory: public cppu::WeakImplHelper < +class TVFactory final : public cppu::WeakImplHelper < css::lang::XServiceInfo, css::lang::XMultiServiceFactory > { diff --git a/xmlhelp/source/cxxhelp/inc/tvread.hxx b/xmlhelp/source/cxxhelp/inc/tvread.hxx index fe529d3bfcfa..0419ce0ab185 100644 --- a/xmlhelp/source/cxxhelp/inc/tvread.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvread.hxx @@ -135,7 +135,7 @@ namespace treeview { }; // end class TVBase - class TVRead + class TVRead final : public TVBase { friend class TVChildTarget; |