diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-11-23 21:48:33 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-11-23 21:48:33 +0100 |
commit | aafc083257203d09fb15cbc16dd86539a7df5856 (patch) | |
tree | 3a9952ab7e541a44381d469de76bf6e1ff671ec6 /vcl/source/edit | |
parent | b73abe292eda22c2332ff819a1ca5f66d0ee7d9f (diff) |
loplugin:unnecessaryoverride (dtors) in vcl
Change-Id: I38e24991308bf52e75259a30d332145aef9a757b
Diffstat (limited to 'vcl/source/edit')
-rw-r--r-- | vcl/source/edit/textview.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vcl/source/edit/textview.cxx b/vcl/source/edit/textview.cxx index 81d0906680ae..77a7c5aa7a2b 100644 --- a/vcl/source/edit/textview.cxx +++ b/vcl/source/edit/textview.cxx @@ -68,7 +68,6 @@ private: public: explicit TETextDataObject( const OUString& rText ); - virtual ~TETextDataObject() override; OUString& GetText() { return maText; } SvMemoryStream& GetHTMLStream() { return maHTMLStream; } @@ -88,10 +87,6 @@ TETextDataObject::TETextDataObject( const OUString& rText ) : maText( rText ) { } -TETextDataObject::~TETextDataObject() -{ -} - // css::uno::XInterface css::uno::Any TETextDataObject::queryInterface( const css::uno::Type & rType ) throw(css::uno::RuntimeException, std::exception) { |