diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-03 11:09:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-03 11:09:54 +0200 |
commit | 6ce92bc266785b5347c0757e1245187e2c00cfaf (patch) | |
tree | d9c2d6479d3a4cfe9a752929207663e10fc72553 /sfx2 | |
parent | a69d89435d12529c1af818bc72192588d8abea18 (diff) |
loplugin:saloverride
Change-Id: I1d3cd2ff9a2c579d23b97a6ab8e9cf2baadf0439
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/qa/cppunit/test_controlleritem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/qa/cppunit/test_controlleritem.cxx b/sfx2/qa/cppunit/test_controlleritem.cxx index ee48f467b937..fe9637f399b5 100644 --- a/sfx2/qa/cppunit/test_controlleritem.cxx +++ b/sfx2/qa/cppunit/test_controlleritem.cxx @@ -39,7 +39,7 @@ static bool bDeleted = false; class FooController : public SfxControllerItem { public: FooController() : SfxControllerItem() {} - ~FooController() { bDeleted = true; } + virtual ~FooController() { bDeleted = true; } }; void ControllerItemTest::test() |