summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 08:13:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 06:57:57 +0000
commitc123c528bf1550e544b29e5a22a94a0452d5f349 (patch)
tree2dd015a5fe42b6c9b95302016674f3362478d295 /filter
parent62e5010e5df379a26aa85ca9fd58bf872f020c36 (diff)
loplugin:unnecessaryvirtual in comphelper..forms
Change-Id: Iabe292e68cb84b97f207061347ed6a30309dc9fd Reviewed-on: https://gerrit.libreoffice.org/30679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgwriter.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/svg/svgwriter.hxx b/filter/source/svg/svgwriter.hxx
index 0ea1c7cca727..b06998ba9bcc 100644
--- a/filter/source/svg/svgwriter.hxx
+++ b/filter/source/svg/svgwriter.hxx
@@ -146,7 +146,7 @@ class SVGExport;
class SVGFontExport;
-class SVGAttributeWriter
+class SVGAttributeWriter final
{
private:
@@ -161,7 +161,7 @@ private:
public:
SVGAttributeWriter( SVGExport& rExport, SVGFontExport& rFontExport, SVGState& rCurState );
- virtual ~SVGAttributeWriter();
+ ~SVGAttributeWriter();
void AddColorAttr( const char* pColorAttrName, const char* pColorOpacityAttrName, const Color& rColor );
void AddGradientDef( const Rectangle& rObjRect,const Gradient& rGradient, OUString& rGradientId );
@@ -214,7 +214,7 @@ struct BulletListItemInfo
};
-class SVGTextWriter
+class SVGTextWriter final
{
public:
typedef std::unordered_map< OUString, BulletListItemInfo, OUStringHash > BulletListItemInfoMap;
@@ -255,7 +255,7 @@ class SVGTextWriter
public:
explicit SVGTextWriter( SVGExport& rExport, SVGAttributeWriter& rAttributeWriter );
- virtual ~SVGTextWriter();
+ ~SVGTextWriter();
sal_Int32 setTextPosition( const GDIMetaFile& rMtf, sal_uLong& nCurAction );
void setTextProperties( const GDIMetaFile& rMtf, sal_uLong nCurAction );
@@ -312,7 +312,7 @@ class SVGTextWriter
};
-class SVGActionWriter
+class SVGActionWriter final
{
private:
@@ -377,7 +377,7 @@ public:
public:
SVGActionWriter( SVGExport& rExport, SVGFontExport& rFontExport );
- virtual ~SVGActionWriter();
+ ~SVGActionWriter();
void WriteMetaFile( const Point& rPos100thmm,
const Size& rSize100thmm,