summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-05 09:00:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-05 09:00:32 +0100
commit542bb6b7876f7a5aef4e27f054fba39448b111b5 (patch)
treeeced796a47321bcf10ff5a31a4736d2433294c2b /sd/source/ui/slidesorter/shell
parent4586cc8b62f93c1cb113218da4ebe332692fe314 (diff)
loplugin:unnecessaryoverride (dtors) in sd
Change-Id: Ibe339042a523f7c55fbcea68756524fc168e8558
Diffstat (limited to 'sd/source/ui/slidesorter/shell')
-rw-r--r--sd/source/ui/slidesorter/shell/SlideSorter.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/sd/source/ui/slidesorter/shell/SlideSorter.cxx b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
index 98835c75fa7a..d7c576b51b42 100644
--- a/sd/source/ui/slidesorter/shell/SlideSorter.cxx
+++ b/sd/source/ui/slidesorter/shell/SlideSorter.cxx
@@ -51,7 +51,7 @@ class ContentWindow : public ::sd::Window
{
public:
ContentWindow(vcl::Window& rParent, SlideSorter& rSlideSorter);
- virtual ~ContentWindow() override;
+
void SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction);
virtual void Paint(vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect) override;
virtual void KeyInput (const KeyEvent& rEvent) override;
@@ -439,10 +439,6 @@ ContentWindow::ContentWindow(
SetStyle(GetStyle() | WB_NOPOINTERFOCUS);
}
-ContentWindow::~ContentWindow()
-{
-}
-
void ContentWindow::SetCurrentFunction (const rtl::Reference<FuPoor>& rpFunction)
{
mpCurrentFunction = rpFunction;