Kaydet (Commit) 70b0b2f9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryoverride (dtors) in svl

Change-Id: I6dd35199e15aebf547578642692db2b1983ebd95
üst 7ca8ff7f
...@@ -19,7 +19,6 @@ class PoolItemTest : public CppUnit::TestFixture ...@@ -19,7 +19,6 @@ class PoolItemTest : public CppUnit::TestFixture
{ {
public: public:
PoolItemTest() {} PoolItemTest() {}
virtual ~PoolItemTest() override {}
void testPool(); void testPool();
......
...@@ -62,7 +62,6 @@ class SvtCJKOptions_Impl : public utl::ConfigItem ...@@ -62,7 +62,6 @@ class SvtCJKOptions_Impl : public utl::ConfigItem
public: public:
SvtCJKOptions_Impl(); SvtCJKOptions_Impl();
virtual ~SvtCJKOptions_Impl() override;
virtual void Notify( const css::uno::Sequence< OUString >& rPropertyNames ) override; virtual void Notify( const css::uno::Sequence< OUString >& rPropertyNames ) override;
void Load(); void Load();
...@@ -114,10 +113,6 @@ SvtCJKOptions_Impl::SvtCJKOptions_Impl() : ...@@ -114,10 +113,6 @@ SvtCJKOptions_Impl::SvtCJKOptions_Impl() :
{ {
} }
SvtCJKOptions_Impl::~SvtCJKOptions_Impl()
{
}
void SvtCJKOptions_Impl::SetAll(bool bSet) void SvtCJKOptions_Impl::SetAll(bool bSet)
{ {
if ( if (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment