diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-16 03:28:12 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-16 03:37:30 +0100 |
commit | 608521e9070156a43b9ee1f68db46aea671f08b9 (patch) | |
tree | fe7e9c049f454641b3a7031d6c1a603aad3aba57 /sc | |
parent | bec878031af5ed1e533300d5f0fd93ac295b46db (diff) |
coverity: we need a virtual d'tor here
Change-Id: Ifb4cc80761611fbf398ee3cc1d56d104a2d2b5c9
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/checklistmenu.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/source/ui/inc/checklistmenu.hxx b/sc/source/ui/inc/checklistmenu.hxx index 1a36ae54f540..52066c3c0262 100644 --- a/sc/source/ui/inc/checklistmenu.hxx +++ b/sc/source/ui/inc/checklistmenu.hxx @@ -218,7 +218,11 @@ public: * Extended data that the client code may need to store. Create a * sub-class of this and store data there. */ - struct ExtendedData {}; + struct ExtendedData { + + virtual ~ExtendedData() {} + + }; /** * Configuration options for this popup window. |