summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-07 09:31:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-07 10:11:33 +0000
commit0f96b3f33f98ecd56f0fe55a65315d6762ff978a (patch)
treefa4f2b9dd0b7e8e9f30d6fe18c86a3e89a66352f /unotools
parent41ea741cd843776cd600d33b28a7f0e35345e0d0 (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 'unotools')
-rw-r--r--unotools/source/config/viewoptions.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/viewoptions.cxx b/unotools/source/config/viewoptions.cxx
index 874f9f13df3d..2b1c845cc524 100644
--- a/unotools/source/config/viewoptions.cxx
+++ b/unotools/source/config/viewoptions.cxx
@@ -85,14 +85,14 @@ sal_Int32 SvtViewOptions::m_nRefCount_Windows = 0
between added/changed/removed elements without any complex mask or bool flag information.
Caches from configuration and our own one are synchronized every time - if we do so.
*//*-*************************************************************************************************************/
-class SvtViewOptionsBase_Impl
+class SvtViewOptionsBase_Impl final
{
public:
enum State { STATE_NONE, STATE_FALSE, STATE_TRUE };
explicit SvtViewOptionsBase_Impl(const OUString& rList);
- virtual ~SvtViewOptionsBase_Impl ( );
+ ~SvtViewOptionsBase_Impl ( );
bool Exists ( const OUString& sName );
void Delete ( const OUString& sName );
OUString GetWindowState ( const OUString& sName );