summaryrefslogtreecommitdiff
path: root/test/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-31 13:28:49 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-31 13:28:49 +0000
commitd1a84bdb8065c46d98908bc5caec4a995d4d196f (patch)
treed08ada09c270c634a892b9590cbc8c5103f9bac5 /test/inc
parent9c66fca6ceaa3ba4ad79264a56a992828a92f536 (diff)
WaE: add virtual dtors
Diffstat (limited to 'test/inc')
-rw-r--r--test/inc/test/container/xnamed.hxx1
-rw-r--r--test/inc/test/sheet/xdatapilottable.hxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/test/inc/test/container/xnamed.hxx b/test/inc/test/container/xnamed.hxx
index 39445822c51c..d878c311696c 100644
--- a/test/inc/test/container/xnamed.hxx
+++ b/test/inc/test/container/xnamed.hxx
@@ -38,6 +38,7 @@ class OOO_DLLPUBLIC_TEST XNamed
{
public:
XNamed(const rtl::OUString& rName): maName(rName) {}
+ virtual ~XNamed();
void testGetName();
void testSetName();
diff --git a/test/inc/test/sheet/xdatapilottable.hxx b/test/inc/test/sheet/xdatapilottable.hxx
index 7d67f97e7f7c..22474c5d26e5 100644
--- a/test/inc/test/sheet/xdatapilottable.hxx
+++ b/test/inc/test/sheet/xdatapilottable.hxx
@@ -40,6 +40,7 @@ class OOO_DLLPUBLIC_TEST XDataPilotTable
{
public:
virtual uno::Reference< uno::XInterface > init() = 0;
+ virtual ~XDataPilotTable();
void testGetOutputRange();
void testRefresh();