diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-29 11:41:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-29 11:43:40 +0000 |
commit | 9bfd742d8cdc4aab3dd817f13ab4cfa5cc60ae12 (patch) | |
tree | 51815ec709869dd297c10b8359b3bc4736204a98 /chart2 | |
parent | cfaba15c589f882cc0bcce5cd07bdf3d30f547f6 (diff) |
loplugin:unusedmethods
Change-Id: Ib008613fb06c82791c63d5b074a3e2ff1c3607a0
Reviewed-on: https://gerrit.libreoffice.org/35834
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/inc/ChartWindow.hxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/main/ChartWindow.cxx | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/chart2/source/controller/inc/ChartWindow.hxx b/chart2/source/controller/inc/ChartWindow.hxx index e9c18277ffc5..5a407fdac85c 100644 --- a/chart2/source/controller/inc/ChartWindow.hxx +++ b/chart2/source/controller/inc/ChartWindow.hxx @@ -37,8 +37,6 @@ public: virtual ~ChartWindow() override; virtual void dispose() override; - void clear(); - //from base class Window: virtual void PrePaint(vcl::RenderContext& rRenderContext) override; virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) override; diff --git a/chart2/source/controller/main/ChartWindow.cxx b/chart2/source/controller/main/ChartWindow.cxx index 21cc0cefc2ab..b8c602b308be 100644 --- a/chart2/source/controller/main/ChartWindow.cxx +++ b/chart2/source/controller/main/ChartWindow.cxx @@ -97,12 +97,6 @@ void ChartWindow::dispose() vcl::Window::dispose(); } -void ChartWindow::clear() -{ - m_pWindowController=nullptr; - this->ReleaseMouse(); -} - void ChartWindow::PrePaint(vcl::RenderContext& rRenderContext) { // forward VCLs PrePaint window event to DrawingLayer |