summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 08:55:13 +0200
committerNoel Grandin <noel@peralex.com>2015-06-09 10:06:57 +0200
commit81b954718f0cdac6873927e869b3e41f863562e7 (patch)
tree3e12a2cb35b263ea4d4e49b61af2ca8b733c5c28 /lotuswordpro
parentaba3c3a35a0afde16e42a94ae8cb2b1f589135db (diff)
loplugin:unnecessaryvirtuals
Improve the plugin a little. Create a python script to process the output. Run it again. Change-Id: I05c21d8a21c8f4243af739c412fda0a521f9b5f0
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpoleobject.hxx2
-rw-r--r--lotuswordpro/source/filter/lwpparastyle.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpoleobject.hxx b/lotuswordpro/source/filter/lwpoleobject.hxx
index bcbc8674d86e..a06dbc9eca32 100644
--- a/lotuswordpro/source/filter/lwpoleobject.hxx
+++ b/lotuswordpro/source/filter/lwpoleobject.hxx
@@ -102,7 +102,7 @@ class LwpGraphicOleObject : public LwpContent
public:
LwpGraphicOleObject(LwpObjectHeader& objHdr, LwpSvStream* pStrm);
virtual void Read() SAL_OVERRIDE;
- virtual void GetGrafScaledSize(double& fWidth, double& fHeight);
+ void GetGrafScaledSize(double& fWidth, double& fHeight);
virtual void GetGrafOrgSize(double& rWidth, double& rHeight);
protected:
LwpObjectID m_pPrevObj;
diff --git a/lotuswordpro/source/filter/lwpparastyle.hxx b/lotuswordpro/source/filter/lwpparastyle.hxx
index 42bcb4a2a50f..f1d67b2a0505 100644
--- a/lotuswordpro/source/filter/lwpparastyle.hxx
+++ b/lotuswordpro/source/filter/lwpparastyle.hxx
@@ -82,9 +82,9 @@ public:
virtual ~LwpParaStyle();
- void Read() SAL_OVERRIDE;
+ void Read() SAL_OVERRIDE;
- virtual void Apply(XFParaStyle *pStrm);
+ void Apply(XFParaStyle *pStrm);
// 01/26/2005
static void ApplyParaBorder(XFParaStyle* pParaStyle, LwpParaBorderOverride* pBorder);
static void ApplyBreaks(XFParaStyle* pParaStyle, LwpBreaksOverride* pBreaks);