diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-02 11:18:16 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-02 12:09:24 +0200 |
commit | 99a579d00def43c6d8e30fd8da2644aa85bcbbc4 (patch) | |
tree | 37b06442049b612a2c058a4ff0e0d2eb82ec47f1 | |
parent | 928633e77240eb787ed6d34645d4da5b85255ece (diff) |
WaE: abstract but has non-virtual destructor
-rw-r--r-- | sc/source/filter/xml/xmlnexpi.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmlnexpi.hxx b/sc/source/filter/xml/xmlnexpi.hxx index d480e78786ed..bdcbec017328 100644 --- a/sc/source/filter/xml/xmlnexpi.hxx +++ b/sc/source/filter/xml/xmlnexpi.hxx @@ -49,6 +49,7 @@ public: class Inserter { public: + virtual ~Inserter() {} virtual void insert(ScMyNamedExpression* pExp) = 0; }; |