summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-07 14:37:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 06:10:25 +0000
commit990102be61a47a14a73a25ee320ac1033250777e (patch)
tree69ab0c8d40c266a901fd66e99b79d1c00f6c08ba /lotuswordpro
parentdda87c6a461174def7334d2c0aac87d4eb8ab7cf (diff)
loplugin:unnecessaryvirtual in hwpfilter..rsc
Change-Id: I2e9df8223d503b813b4c458747e8c44bb8ef8868 Reviewed-on: https://gerrit.libreoffice.org/30661 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpbulletstylemgr.hxx4
-rw-r--r--lotuswordpro/source/filter/lwplayout.hxx8
-rw-r--r--lotuswordpro/source/filter/xfilter/xfofficemeta.hxx4
3 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.hxx b/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
index cfcb0a92a93c..c424386a6238 100644
--- a/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
+++ b/lotuswordpro/source/filter/lwpbulletstylemgr.hxx
@@ -75,11 +75,11 @@ class LwpPara;
class LwpIndentOverride;
class LwpBulletOverride;
-class LwpBulletStyleMgr
+class LwpBulletStyleMgr final
{
public:
LwpBulletStyleMgr();
- virtual ~LwpBulletStyleMgr();
+ ~LwpBulletStyleMgr();
OUString RegisterBulletStyle(LwpPara* pPara, LwpBulletOverride* pBullOver,
LwpIndentOverride* pIndent);
inline void SetFoundry(LwpFoundry* pFoundry);
diff --git a/lotuswordpro/source/filter/lwplayout.hxx b/lotuswordpro/source/filter/lwplayout.hxx
index 54ec8ebbe469..70ab7cd64e56 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -302,11 +302,11 @@ protected:
virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_HEAD_LAYOUT;}
};
-class LwpLayoutStyle
+class LwpLayoutStyle final
{
public:
LwpLayoutStyle();
- virtual ~LwpLayoutStyle();
+ ~LwpLayoutStyle();
void Read(LwpObjectStream* pStrm);
private:
sal_uInt32 m_nStyleDefinition;
@@ -314,11 +314,11 @@ private:
sal_uInt16 m_nKey;
};
-class LwpLayoutMisc
+class LwpLayoutMisc final
{
public:
LwpLayoutMisc();
- virtual ~LwpLayoutMisc();
+ ~LwpLayoutMisc();
void Read(LwpObjectStream* pStrm);
private:
sal_Int32 m_nGridDistance;
diff --git a/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx b/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
index 19d9be4aadac..3367f54d8c47 100644
--- a/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfofficemeta.hxx
@@ -63,11 +63,11 @@
#include "xfglobal.hxx"
-class XFOfficeMeta
+class XFOfficeMeta final
{
public:
XFOfficeMeta(){}
- virtual ~XFOfficeMeta(){}
+ ~XFOfficeMeta(){}
void SetCreator(const OUString& creator);
void SetDescription(const OUString& dsr);