WaE: class has virtual functions, but destructor is not virtual

This commit is contained in:
Tor Lillqvist
2012-02-13 12:24:22 +02:00
committed by Tor Lillqvist
parent beb8a85796
commit 976cc2360d
3 changed files with 6 additions and 0 deletions

View File

@@ -43,6 +43,8 @@ public:
virtual uno::Reference< uno::XInterface > init() = 0;
virtual ~XElementAccess() {}
private:
uno::Type maType;
};

View File

@@ -46,6 +46,8 @@ public:
void testRemoveByName();
virtual ~XNameContainer() {}
private:
rtl::OUString maNameToRemove;
};

View File

@@ -46,6 +46,8 @@ public:
virtual uno::Any getAnyElementForNameReplace() = 0;
virtual ~XNameReplace() {}
private:
rtl::OUString maName;