summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-17 16:47:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-21 08:32:39 +0200
commitdefd2cb0255ad9e376ccd18df9a48ed1adae9d1e (patch)
treef1620e0100965549da9c7476e98078e078717003 /sd
parentd5ec8bc929d243fbd707b916883d0a192d5bb072 (diff)
loplugin:virtualdead unused param in SdrHdl::onHelpRequest
Change-Id: I3d75755bd6fd7f3168725c53fd8ce571a938fa37 Reviewed-on: https://gerrit.libreoffice.org/81181 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/viewoverlaymanager.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/viewoverlaymanager.cxx b/sd/source/ui/view/viewoverlaymanager.cxx
index dd5dc860c33f..8b5814749529 100644
--- a/sd/source/ui/view/viewoverlaymanager.cxx
+++ b/sd/source/ui/view/viewoverlaymanager.cxx
@@ -139,7 +139,7 @@ public:
virtual PointerStyle GetPointer() const override;
virtual void onMouseEnter(const MouseEvent& rMEvt) override;
- virtual void onHelpRequest(const HelpEvent& rHEvt) override;
+ virtual void onHelpRequest() override;
virtual void onMouseLeave() override;
int getHighlightId() const { return mnHighlightId; }
@@ -196,7 +196,7 @@ void ImageButtonHdl::ShowTip()
Help::ShowQuickHelp(pWindow, aScreenRect, aHelpText);
}
-void ImageButtonHdl::onHelpRequest(const HelpEvent& /*rHEvt*/)
+void ImageButtonHdl::onHelpRequest()
{
ShowTip();
}