diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-07 09:31:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-07 10:11:33 +0000 |
commit | 0f96b3f33f98ecd56f0fe55a65315d6762ff978a (patch) | |
tree | fa4f2b9dd0b7e8e9f30d6fe18c86a3e89a66352f /include/tools | |
parent | 41ea741cd843776cd600d33b28a7f0e35345e0d0 (diff) |
loplugin:unnecessaryvirtual in test..vbahelper
Change-Id: I0e110af6eab798e11f96d0f7d282d59440d91965
Reviewed-on: https://gerrit.libreoffice.org/30649
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/simplerm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/simplerm.hxx b/include/tools/simplerm.hxx index 7560f4bc64c7..b670dab21a3d 100644 --- a/include/tools/simplerm.hxx +++ b/include/tools/simplerm.hxx @@ -30,7 +30,7 @@ class InternalResMgr; -class TOOLS_DLLPUBLIC SimpleResMgr +class TOOLS_DLLPUBLIC SimpleResMgr final { protected: osl::Mutex m_aAccessSafety; @@ -48,7 +48,7 @@ public: SimpleResMgr( const sal_Char* pPrefixName, const LanguageTag& rLocale); - virtual ~SimpleResMgr(); + ~SimpleResMgr(); static SimpleResMgr* Create( const sal_Char* pPrefixName, const LanguageTag& rLocale );// only in VCL |