summaryrefslogtreecommitdiff
path: root/include/test
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 /include/test
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 'include/test')
-rw-r--r--include/test/mtfxmldump.hxx4
-rw-r--r--include/test/primitive2dxmldump.hxx4
-rw-r--r--include/test/xmlwriter.hxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/include/test/mtfxmldump.hxx b/include/test/mtfxmldump.hxx
index 6fc24e61992e..38087d6f8f3a 100644
--- a/include/test/mtfxmldump.hxx
+++ b/include/test/mtfxmldump.hxx
@@ -21,7 +21,7 @@
class XmlWriter;
enum class MetaActionType;
-class OOO_DLLPUBLIC_TEST MetafileXmlDump
+class OOO_DLLPUBLIC_TEST MetafileXmlDump final
{
o3tl::enumarray<MetaActionType, bool> maFilter;
@@ -29,7 +29,7 @@ class OOO_DLLPUBLIC_TEST MetafileXmlDump
public:
MetafileXmlDump();
- virtual ~MetafileXmlDump();
+ ~MetafileXmlDump();
void filterActionType(const MetaActionType nActionType, bool bShouldFilter);
void filterAllActionTypes();
diff --git a/include/test/primitive2dxmldump.hxx b/include/test/primitive2dxmldump.hxx
index b885234bdc67..80ef271ee720 100644
--- a/include/test/primitive2dxmldump.hxx
+++ b/include/test/primitive2dxmldump.hxx
@@ -19,7 +19,7 @@
#include <vector>
-class OOO_DLLPUBLIC_TEST Primitive2dXmlDump
+class OOO_DLLPUBLIC_TEST Primitive2dXmlDump final
{
private:
std::vector<bool> maFilter;
@@ -27,7 +27,7 @@ private:
public:
Primitive2dXmlDump();
- virtual ~Primitive2dXmlDump();
+ ~Primitive2dXmlDump();
/** The actual result that will be used for testing.
diff --git a/include/test/xmlwriter.hxx b/include/test/xmlwriter.hxx
index 836a12384795..96a5314d8d48 100644
--- a/include/test/xmlwriter.hxx
+++ b/include/test/xmlwriter.hxx
@@ -18,7 +18,7 @@
class SvStream;
-class OOO_DLLPUBLIC_TEST XmlWriter
+class OOO_DLLPUBLIC_TEST XmlWriter final
{
private:
SvStream* mpStream;
@@ -26,7 +26,7 @@ private:
public:
XmlWriter(SvStream* pStream);
- virtual ~XmlWriter();
+ ~XmlWriter();
void startDocument();
void endDocument();