From 81b954718f0cdac6873927e869b3e41f863562e7 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 9 Jun 2015 08:55:13 +0200 Subject: loplugin:unnecessaryvirtuals Improve the plugin a little. Create a python script to process the output. Run it again. Change-Id: I05c21d8a21c8f4243af739c412fda0a521f9b5f0 --- lotuswordpro/source/filter/lwpoleobject.hxx | 2 +- lotuswordpro/source/filter/lwpparastyle.hxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lotuswordpro') 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); -- cgit